From 7de804af6e6116a0e537defcecb1e87c64aa3f55 Mon Sep 17 00:00:00 2001 From: jesusc Date: Sat, 7 Jun 2003 22:46:56 +0000 Subject: [PATCH] added: _atof.c git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2678 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- ChangeLog | 7 ++++++- device/lib/Makefile.in | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 95aa7ef1..dbfde422 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-06-07 Jesus Calvino-Fraga + + * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h, + device/lib/libfloat.lib: added atof function. + 2003-06-04 Bernhard Held * doc/sdccman.lyx: updated to Lyx 1.3 @@ -55,7 +60,7 @@ * device/lib/z80/stubs.s * src/SDCCsymt.c (initCSupport) -2003-05-24 Jesus Calvino-Fraga +2003-05-25 Jesus Calvino-Fraga * as/mcs51/lkaomf51.c: Address space 'z' was missing. * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp, diff --git a/device/lib/Makefile.in b/device/lib/Makefile.in index 749a573c..a5b0e6f4 100644 --- a/device/lib/Makefile.in +++ b/device/lib/Makefile.in @@ -42,7 +42,7 @@ BUILDDIR = build PORT = z80 PORTDIR = $(BUILDDIR)/$(PORT) -SOURCES = _atoi.c _atol.c _autobaud.c _bp.c _schar2fs.c \ +SOURCES = _atof.c _atoi.c _atol.c _autobaud.c _bp.c _schar2fs.c \ _decdptr.c _divsint.c _divslong.c _divuint.c \ _divulong.c _fs2schar.c _fs2sint.c _fs2slong.c \ _fs2uchar.c _fs2uint.c _fs2ulong.c _fsadd.c \ @@ -69,7 +69,7 @@ SOURCES = _atoi.c _atol.c _autobaud.c _bp.c _schar2fs.c \ OBJECTS = $(patsubst %.c,$(PORTDIR)/%.rel,$(SOURCES)) -Z80SOURCES = _atoi.c \ +Z80SOURCES = _atof.c _atoi.c \ _iscntrl.c _isdigit.c _isgraph.c \ _islower.c _isprint.c _ispunct.c _isspace.c \ _isupper.c _isxdigit.c _memcmp.c \ @@ -94,7 +94,7 @@ Z80SOURCES = _atoi.c \ Z80OBJECTS = $(Z80SOURCES:%.c=$(PORTDIR)/%.o) -XA51SOURCES = _atoi.c _atol.c _schar2fs.c \ +XA51SOURCES = _atof.c _atoi.c _atol.c _schar2fs.c \ _divsint.c _divslong.c _divuint.c \ _divulong.c _fs2schar.c _fs2sint.c _fs2slong.c \ _fs2uchar.c _fs2uint.c _fs2ulong.c _fsadd.c \ -- 2.30.2