home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lynx2.8.1dev.10.tar.gz / lynx2.8.1dev.10.tar / lynx2-8 / src / LYSignal.h < prev    next >
C/C++ Source or Header  |  1997-02-24  |  300b  |  16 lines

  1.  
  2. #ifndef LYSIGNAL_H
  3. #define LYSIGNAL_H
  4.  
  5. #include <signal.h>
  6.  
  7. #ifdef VMS
  8. extern void *VMSsignal PARAMS((int sig, void (*func)()));
  9. #ifdef signal
  10. #undef signal
  11. #endif /* signal */
  12. #define signal(a,b) VMSsignal(a,b) /* use LYCurses.c routines for interrupts */
  13. #endif /* VMS */
  14.  
  15. #endif /* LYSIGNAL_H */
  16.