diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-07-12 16:54:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-07-12 16:54:43 -0400 |
commit | 90e123f4a810d17c6bd8c2102939f6416481427e (patch) | |
tree | 98fb7d76965abcbcd309a9fbcf9262e3ab2a364c /include/signal.h | |
parent | a1546e8d61144fdb0f2ac3270250349fa77166f0 (diff) | |
download | musl-90e123f4a810d17c6bd8c2102939f6416481427e.tar.gz musl-90e123f4a810d17c6bd8c2102939f6416481427e.tar.bz2 musl-90e123f4a810d17c6bd8c2102939f6416481427e.tar.xz musl-90e123f4a810d17c6bd8c2102939f6416481427e.zip |
fix redef of sigprocmask constants on mips
this fix is easier than trying to reorder the header stuff
Diffstat (limited to 'include/signal.h')
-rw-r--r-- | include/signal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/signal.h b/include/signal.h index 72bffd61..d4856a89 100644 --- a/include/signal.h +++ b/include/signal.h @@ -28,11 +28,9 @@ 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) |