From: jesusc Date: Sat, 26 Nov 2005 17:01:06 +0000 (+0000) Subject: Corrected typo in prototype of __fsgt X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=098d3c55b2cfcd18a18f07c05c92c8e34ea5359d;p=fw%2Fsdcc Corrected typo in prototype of __fsgt git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3989 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/ChangeLog b/ChangeLog index 4600174d..cd2c4c5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-11-26 Jesus Calvino-Fraga + + * device/include/float.h: Corrected typo in prototype of __fsgt + 2005-11-25 Borut Razem * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk: diff --git a/device/include/float.h b/device/include/float.h index 3d3bb4c0..05ad4be7 100644 --- a/device/include/float.h +++ b/device/include/float.h @@ -68,7 +68,7 @@ float __fsdiv (float, float); char __fslt (float, float); char __fseq (float, float); -char __fsqt (float, float); +char __fsgt (float, float); #if defined(SDCC_FLOAT_LIB) && defined(SDCC_mcs51) && !defined(SDCC_USE_XSTACK) && !defined(_SDCC_NO_ASM_LIB_FUNCS)