Browse Source

Get rid again of memset reloc

Peter S. Mazinger 19 years ago
parent
commit
0c091da2f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/signal/sigfillset.c

+ 1 - 1
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