diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 56dfa61b7..4232c38f4 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -20,6 +20,12 @@ | |||
20 | #include <netdb.h> | 20 | #include <netdb.h> |
21 | #include <setjmp.h> | 21 | #include <setjmp.h> |
22 | #include <signal.h> | 22 | #include <signal.h> |
23 | #if defined __UCLIBC__ /* TODO: and glibc? */ | ||
24 | /* use inlined versions of these: */ | ||
25 | # define sigfillset(s) __sigfillset(s) | ||
26 | # define sigemptyset(s) __sigemptyset(s) | ||
27 | # define sigisemptyset(s) __sigisemptyset(s) | ||
28 | #endif | ||
23 | #include <stdint.h> | 29 | #include <stdint.h> |
24 | #include <stdio.h> | 30 | #include <stdio.h> |
25 | #include <stdlib.h> | 31 | #include <stdlib.h> |