diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-17 06:02:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-17 06:02:35 +0000 |
commit | cd2b5379fc8fa51a7117185094ff070105abc749 (patch) | |
tree | bf4dd05734e3e034152013d5596e7ac51a03b571 /libc/signal/sigsetops.c | |
parent | b1c97c3b65453ab7c5c736550e88ff3d4b51a57d (diff) |
Fix up sig handling so it is more in sync with glibc behavior
Diffstat (limited to 'libc/signal/sigsetops.c')
-rw-r--r-- | libc/signal/sigsetops.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/signal/sigsetops.c b/libc/signal/sigsetops.c new file mode 100644 index 000000000..0317662a1 --- /dev/null +++ b/libc/signal/sigsetops.c @@ -0,0 +1,11 @@ +/* Define the real-function versions of all inline functions + defined in signal.h (or bits/sigset.h). */ + +#include <features.h> + +#define _EXTERN_INLINE +#ifndef __USE_EXTERN_INLINES +# define __USE_EXTERN_INLINES 1 +#endif + +#include "signal.h" |