* device/lib/pic/libdev/Makefile.in: build device-specific
[fw/sdcc] / device / lib / _strspn.c
index 274b49e69322a12c8702b04e6fcb3b205dd91ef7..fae51a6f7230cb87b5e023ef91448e3d146526d3 100644 (file)
    what you give them.   Help stamp out software-hoarding!  
 -------------------------------------------------------------------------*/
 #include "string.h" 
-#define NULL (void *)0
 
 int strspn (
-       char _generic * string,
-       char _generic * control
+       char * string,
+       char * control
        ) 
 {
        register int count = 0;