* device/include/malloc.h: removed warning while using --stack-auto
* device/include/string.h: removed warning while using --stack-auto
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2307
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2003-02-24 Bernhard Held <bernhard@bernhardheld.de>
+
+ * device/include/ctype.h: removed warning while using --stack-auto
+ * device/include/malloc.h: removed warning while using --stack-auto
+ * device/include/string.h: removed warning while using --stack-auto
+
2003-02-23 Borut Razem <borut.razem@siol.net>
* src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
#include <sdcc-lib.h>
#ifdef SDCC_STACK_AUTO
-/* #warning Make sure you recompile _is*.c files as 'reentrant' */
extern char iscntrl (unsigned char ) _REENTRANT ;
extern char isdigit (unsigned char ) _REENTRANT ;
};
#ifdef SDCC_STACK_AUTO
-#warning Make sure you recompile malloc.c as 'reentrant'
extern void init_dynamic_memory(MEMHEADER xdata * , unsigned int ) reentrant;
extern void xdata * malloc (unsigned int ) reentrant;
#define memmove memcpy
#ifdef SDCC_STACK_AUTO
-#ifdef SDCC_mcs51
-#warning Make sure you recompiled _str*.c and _mem*.c library functions as 'reentrant'
-#endif
extern char *strcpy (char *, char *) reentrant ;
extern char *strncpy(char *, char *,int ) reentrant ;