about summary refs log tree commit diff stats
path: root/src/LYSignal.h
blob: 9db409187b79f78c9f1bbd32e08420594697fbf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef LYSIGNAL_H
#define LYSIGNAL_H

#include <signal.h>

#ifdef VMS
extern void *VMSsignal PARAMS((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 */

#endif /* LYSIGNAL_H */