Corrected typo in prototype of __fsgt
authorjesusc <jesusc@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 26 Nov 2005 17:01:06 +0000 (17:01 +0000)
committerjesusc <jesusc@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sat, 26 Nov 2005 17:01:06 +0000 (17:01 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@3989 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
device/include/float.h

index 4600174dbecc574dbd50252ec6ab7e1c7a1ab129..cd2c4c5d9f179447b584c94dfba35fa910fc9b84 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
+
+       * device/include/float.h: Corrected typo in prototype of __fsgt
+
 2005-11-25 Borut Razem <borut.razem AT siol.net>
 
        * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
index 3d3bb4c051f50ba046472ea1381709f4eab8a99c..05ad4be7be6bd29618073793337e97cb0dfe6274 100644 (file)
@@ -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)