diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-06 04:08:14 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-12-06 04:08:14 +0000 |
commit | 75e081a2069be03ddcc3416e2f5ce06419bdbbdf (patch) | |
tree | 30615eae7305a6457fb6cfd027c4a0a18918fe6f /libc/signal/sigfillset.c | |
parent | 4c239f07267adbf7c4df9fcb678f0abc246b2460 (diff) |
Get rid of compiler warning.
Diffstat (limited to 'libc/signal/sigfillset.c')
-rw-r--r-- | libc/signal/sigfillset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/signal/sigfillset.c b/libc/signal/sigfillset.c index 84862cfa2..143fd5cad 100644 --- a/libc/signal/sigfillset.c +++ b/libc/signal/sigfillset.c @@ -30,7 +30,7 @@ __sigfillset_internal (sigset_t *set) return -1; } - __memset (set, 0xff, sizeof (sigset_t)); + memset (set, 0xff, sizeof (sigset_t)); /* If the implementation uses a cancellation signal don't set the bit. */ #ifdef SIGCANCEL |