svn commit: trunk/uClibc/libc/signal

sjhill at uclibc.org sjhill at uclibc.org
Tue Dec 6 04:09:35 UTC 2005


Author: sjhill
Date: 2005-12-05 20:08:14 -0800 (Mon, 05 Dec 2005)
New Revision: 12684

Log:
Get rid of compiler warning.


Modified:
   trunk/uClibc/libc/signal/sigfillset.c


Changeset:
Modified: trunk/uClibc/libc/signal/sigfillset.c
===================================================================
--- trunk/uClibc/libc/signal/sigfillset.c	2005-12-06 03:56:14 UTC (rev 12683)
+++ trunk/uClibc/libc/signal/sigfillset.c	2005-12-06 04:08:14 UTC (rev 12684)
@@ -30,7 +30,7 @@
       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




More information about the uClibc-cvs mailing list