* string/memset.c: added _STRING_SPEC macro in function prototype
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3639
4a8a32a2-be11-0410-ad9d-
d568d2c75423
DIRS = ctype \
stdlib \
- string
+ string \
+ utils
LIB = libp18c.lib
$(SED) s/.rel/.o/g .tmpdepend >> .depend; \
$(RM) -f .tmpdepend; \
done;
+ if [ ! -e .depend ]; then touch .depend; fi;
include .depend
-------------------------------------------------------------------------*/
#include <string.h>
-void *memset (void *buf, unsigned char ch, size_t count)
+void *memset (void _STRING_SPEC *buf, unsigned char ch, size_t count)
{
register unsigned char *ret = buf;