X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fsignal.h;h=8e6df09e0fe8b253842509a8684e53d154161cfb;hb=HEAD;hp=bfc9888276e14d2426d810049e5dab110de38cc2;hpb=9240ade77991f36f5584e90d7233182401c77614;p=pdclib.old diff --git a/includes/signal.h b/includes/signal.h deleted file mode 100644 index bfc9888..0000000 --- a/includes/signal.h +++ /dev/null @@ -1,37 +0,0 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- -// Signal handling -// ---------------------------------------------------------------------------- - -#ifndef __SIGNAL_H -#define __SIGNAL_H __SIGNAL_H - -// ---------------------------------------------------------------------------- -// MACROS - -#define SIGABRT // TODO -#define SIGFPE // TODO -#define SIGILL // TODO -#define SIGINT // TODO -#define SIGSEGV // TODO -#define SIGTERM // TODO -#define SIG_DFL // TODO -#define SIG_ERR // TODO -#define SIG_IGN // TODO - -// ---------------------------------------------------------------------------- -// TYPEDEFS - -typedef sig_atomic_t; // TODO - -// ---------------------------------------------------------------------------- -// FUNCTIONS - -int raise( int sig ); // TODO -void ( * signal( int sig, void ( *func )( int ) ) ) ( int ); // TODO - -#endif // __SIGNAL_H