From: maartenbrock Date: Thu, 14 Apr 2005 16:50:05 +0000 (+0000) Subject: * device/include/z80/stdio.h, X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=916f135ed0f14bc4c32d99536278fed16d671f1f;p=fw%2Fsdcc * device/include/z80/stdio.h, * device/include/z80/string.h: removed these highly incomplete files so SDCC can use the default ones in device/include/ git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3737 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index fa28a354..d69c82a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-04-14 Maarten Brock + + * device/include/z80/stdio.h, + * device/include/z80/string.h: removed these highly incomplete files so + SDCC can use the default ones in device/include/ + 2005-04-14 Erik Petrich * src/mcs51/gen.c (genEndFunction): removed unused variable to fix diff --git a/device/include/z80/stdio.h b/device/include/z80/stdio.h deleted file mode 100644 index ff820227..00000000 --- a/device/include/z80/stdio.h +++ /dev/null @@ -1,6 +0,0 @@ -/** Dumb stdio.h - Z80 temp hack. -*/ - -void printf(const char *szFormat, ...); - diff --git a/device/include/z80/string.h b/device/include/z80/string.h deleted file mode 100644 index f87505b6..00000000 --- a/device/include/z80/string.h +++ /dev/null @@ -1,12 +0,0 @@ -/* Silly string.h - * Z80 specific hack -*/ - -#include - -char *strcpy(char *dest, const char *src); - -int strcmp(const char *s1, const char *s2); - -void *memcpy(void *dest, const void *src, WORD wLen); -