From 9d2e144dafa86d39d211204123d826288e39302d Mon Sep 17 00:00:00 2001 From: borutr Date: Sun, 10 Jun 2007 08:31:00 +0000 Subject: [PATCH] * as/link/z80/lklibr.c: fixed mingw build warning lklibr.c:575: warning: implicit declaration of function 'tolower' git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4844 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 5 +++++ as/link/z80/lklibr.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index d0533aeb..996cf6cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-10 Borut Razem + + * as/link/z80/lklibr.c: fixed mingw build warning + lklibr.c:575: warning: implicit declaration of function 'tolower' + 2007-06-09 Borut Razem * src/z80/gen.c: fixed bug #1294691: nested ifs make compiler crash; diff --git a/as/link/z80/lklibr.c b/as/link/z80/lklibr.c index c6d17d0e..f852386e 100644 --- a/as/link/z80/lklibr.c +++ b/as/link/z80/lklibr.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "aslink.h" #ifdef OTHERSYSTEM -- 2.30.2