Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1998 DJ Delorie, see COPYING.DJ for details */
  2. /* Copyright (C) 1997 DJ Delorie, see COPYING.DJ for details */
  3.  
  4. #include <signal.h>
  5. #include <stdio.h>
  6.  
  7. extern char *sys_siglist[];
  8.  
  9. void
  10. psignal (int sig, const char *msg)
  11. {
  12.   if (sig >= 0 && sig < NSIG)
  13.     __libclog_printf( "%s: %s\n", msg, sys_siglist[sig]);
  14.   else
  15.     __libclog_printf( "%s: signal %d\n", msg, sig);
  16. }
  17.