home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib25.zoo / raise.c < prev    next >
C/C++ Source or Header  |  1992-09-17  |  158b  |  13 lines

  1. /* I think ANSI wants this. It's useful, at any rate.
  2.    -- ERS
  3. */
  4.  
  5. #include <unistd.h>
  6.  
  7. int
  8. raise(sig)
  9. int sig;
  10. {
  11.     return kill(getpid(), sig);
  12. }
  13.