75240ed178
o Add missing $Id$s o Move extern decls from .c -> .h files o Staticize o Remove #includes from .h files o style(9)ify includes o bcopy -> memcpy bzero -> memset bcmp -> memcmp index -> strchr rindex -> strrchr o Move timeout.h -> timer.h (making it consistent w/ timer.c) o Add -Wmissing-prototypes
12 lines
226 B
C
12 lines
226 B
C
/*
|
|
* $Id: $
|
|
*/
|
|
|
|
typedef void (*sig_type)(int);
|
|
|
|
/* Call this instead of signal() */
|
|
extern sig_type pending_signal(int, sig_type);
|
|
|
|
/* Call this when you want things to *actually* happen */
|
|
extern void handle_signals(void);
|