소스 검색

Get rid again of memset reloc

Peter S. Mazinger 20 년 전
부모
커밋
0c091da2f8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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