home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * $Source: /unixb/home/unixlib/source/unixlib37/src/signal/c/RCS/siginfo,v $
- * $Date: 1996/10/30 22:04:51 $
- * $Revision: 1.1 $
- * $State: Rel $
- * $Author: unixlib $
- *
- * $Log: siginfo,v $
- * Revision 1.1 1996/10/30 22:04:51 unixlib
- * Initial revision
- *
- ***************************************************************************/
-
- static const char rcs_id[] = "$Id: siginfo,v 1.1 1996/10/30 22:04:51 unixlib Rel $";
-
- /* Written by Nick Burrett, 27 August 1996. */
-
- #include <stdio.h>
- #include <signal.h>
- #include <unixlib/sigstate.h>
-
- /* We should print something relatively informative here.
- But I can't think of anything to print. */
-
- void
- __unixlib_siginfo_handler (int signo)
- {
- signo = signo;
- puts ("got a SIGINFO");
- }
-