Corrected typo in prototype of __fsgt
[fw/sdcc] / device / lib / _memset.c
index a42be818d5a5da51fb9a7399953d38645ebc33c8..9bd603edf3e42eb4566dc5c837376f569e1ebe6f 100644 (file)
    what you give them.   Help stamp out software-hoarding!  
 -------------------------------------------------------------------------*/
 #include "string.h" 
-#define NULL (void *)0
 
 void * memset (
        void * buf,
        unsigned char ch ,
-       int count) 
+       size_t count) 
 {
        register unsigned char * ret = buf;