home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / sh03src.zoo / sh-pl03 / sh / sys / cdefs.h
Encoding:
C/C++ Source or Header  |  1993-02-16  |  192 b   |  16 lines

  1. #ifndef cdefs_h
  2. #define cdefs_h
  3. #include <stddef.h>
  4. #include <sys/types.h>
  5. #include <signal.h>
  6.  
  7. typedef void *sig_t;
  8.  
  9. #ifdef __STDC__
  10. # define __P(x) x
  11. #else
  12. # define __P(x) ()
  13. #endif
  14.  
  15. #endif
  16.