blob: 95619457a9c57fab854c1bc47f6c79730f3a8f19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef LYSIGNAL_H
#define LYSIGNAL_H
#include <signal.h>
#ifdef VMS
extern void VMSsignal(int sig, void (*func) ());
#ifdef signal
#undef signal
#endif /* signal */
#define signal(a,b) VMSsignal(a,b) /* use LYCurses.c routines for interrupts */
#endif /* VMS */
#ifdef HAVE_SIGACTION
typedef void LYSigHandlerFunc_t(int);
/* implementation in LYUtils.c */
extern void LYExtSignal(int sig, LYSigHandlerFunc_t * handler);
#else
#define LYExtSignal(sig,h) signal(sig, h)
#endif
#endif /* LYSIGNAL_H */
|