Browse Source

Get rid of compiler warning.

"Steven J. Hill" 20 năm trước cách đây
mục cha
commit
75e081a206
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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