diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-12 13:53:25 +0100 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:05:38 -0800 |
commit | 675e3c0b3cf40a751c52fde3e7964e112d4dad70 (patch) | |
tree | 6ab6a0e5bf24c91e46ac3b5dffd31ec82e011511 | |
parent | b7ff0537cd0420d02c9db73753d8133a93c58d97 (diff) |
include string.h for memset()
This avoids a warnings about implicit declaration of function 'memset'.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | libc/signal/sigset-cvt-mask.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/signal/sigset-cvt-mask.h b/libc/signal/sigset-cvt-mask.h index 76dd01c7e..d4c2dc7ca 100644 --- a/libc/signal/sigset-cvt-mask.h +++ b/libc/signal/sigset-cvt-mask.h @@ -19,6 +19,8 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include <string.h> + static __inline__ void __attribute__ ((unused)) sigset_set_old_mask (sigset_t *set, int mask) { |