signal.h 618 B

12345678910111213141516171819202122232425262728293031
  1. /* DO NOT EDIT THIS FILE.
  2. It has been auto-edited by fixincludes from:
  3. "fixinc/tests/inc/sys/signal.h"
  4. This had to be done to correct non-standard usages in the
  5. original, manufacturer supplied header file. */
  6. #if defined( AIX_VOLATILE_CHECK )
  7. typedef int sig_atomic_t;
  8. #endif /* AIX_VOLATILE_CHECK */
  9. #if defined( SUN_SIGNAL_CHECK )
  10. #ifdef __cplusplus
  11. void (*signal(...))(...);
  12. #else
  13. void (*signal())();
  14. #endif
  15. #endif /* SUN_SIGNAL_CHECK */
  16. #if defined( SVR4_SIGHANDLER_TYPE_CHECK )
  17. #define SIG_DFL (void (*)(int))0
  18. #define SIG_IGN (void (*)(int))0
  19. #endif /* SVR4_SIGHANDLER_TYPE_CHECK */