diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-07-12 14:21:41 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-07-12 14:21:41 -0400 |
commit | ba8a96b0689943195cb49e7e4ef0de254532d9e2 (patch) | |
tree | 4bf76e556d267b05db044131d0628184e30690ac /include | |
parent | db11e96493d1a814266104332fa1f53a51622213 (diff) | |
download | musl-ba8a96b0689943195cb49e7e4ef0de254532d9e2.tar.gz |
more mips bits-header fixes
signal handling was very broken because of this
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h index d4856a89..72bffd61 100644 --- a/include/signal.h +++ b/include/signal.h @@ -28,9 +28,11 @@ extern "C" { #define SIG_HOLD ((void (*)(int)) 2) +#ifndef SIG_BLOCK #define SIG_BLOCK 0 #define SIG_UNBLOCK 1 #define SIG_SETMASK 2 +#endif #define SI_ASYNCNL (-60) #define SI_TKILL (-6) |