tizen beta release
[external/psmisc.git] / src / signals.h
1 /* signals.h - signal name handling */
2
3 /* Copyright 1993-1995 Werner Almesberger. See file COPYING for details. */
4
5
6 #ifndef SIGNALS_H
7 #define SIGNALS_H
8
9 void list_signals (void);
10
11 /* Lists all known signal names on standard output. */
12
13 int get_signal (char *name, const char *cmd);
14
15 /* Returns the signal number of NAME. If no such signal exists, an error
16    message is displayed and the program is terminated. CMD is the name of the
17    application. */
18
19 #endif