From: uz Date: Fri, 18 Sep 2009 17:23:48 +0000 (+0000) Subject: Fixed an error in the makefile. strtoimax and strtoumax were in the wrong X-Git-Tag: V2.13.0rc1~67 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=689d06929ca3a1a2e8930355fdb439cac51cc1ec;p=cc65 Fixed an error in the makefile. strtoimax and strtoumax were in the wrong list. git-svn-id: svn://svn.cc65.org/cc65/trunk@4189 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/common/Makefile b/libsrc/common/Makefile index 48e0bffc1..a3e0b2cb0 100644 --- a/libsrc/common/Makefile +++ b/libsrc/common/Makefile @@ -72,11 +72,9 @@ C_OBJS = _afailed.o \ rewind.o \ sleep.o \ strftime.o \ - strtoimax.o \ strtok.o \ strtol.o \ strtoul.o \ - strtoumax.o \ strxfrm.o \ system.o \ timezone.o @@ -180,6 +178,8 @@ S_OBJS = _cwd.o \ strrchr.o \ strspn.o \ strstr.o \ + strtoimax.o \ + strtoumax.o \ strupper.o \ time.o \ tolower.o \