]> git.gag.com Git - fw/sdcc/commitdiff
* device/include/ctype.h: removed warning while using --stack-auto
authorbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 24 Feb 2003 20:44:45 +0000 (20:44 +0000)
committerbernhardheld <bernhardheld@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Mon, 24 Feb 2003 20:44:45 +0000 (20:44 +0000)
* 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

ChangeLog
device/include/ctype.h
device/include/malloc.h
device/include/string.h

index bf05822ebd94846a303d365ab9834c1e645b0cf2..2f4d7bba9aeb982f734ad8e218168e612f249bf5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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,
index 851d8453f5eb6721b029ac5975c2592a19ea913d..f30bf8d9559304376ae59bcb18039efd3c22c6bf 100644 (file)
@@ -35,7 +35,6 @@
 #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 ;
index 261e56c1fb490da12bcb5f694a48ef5fde4b2cec..4a1a00ac5ec174213a5c6c7369b07ef993d2fe02 100644 (file)
@@ -47,7 +47,6 @@ MEMHEADER
 };
 
 #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;
index 5909896e6b394b0d2b74711eb1161571d7eb681b..9e0da877823f0017495e073f842150c84cab6239 100644 (file)
@@ -37,9 +37,6 @@
 #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 ;