aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-10-18 20:20:20 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-10-18 20:20:20 +0300
commit901410ff75850fb8ac753fd535ac0649bcb9c3f4 (patch)
tree54c9ca4d3d8d42d3375c86e710fadb374705c330 /Software/Embedded_SW/Embedded/Common
parent09ba6e0a3bb7ba9019dd03e1b82190b9416f6494 (diff)
downloadTango-901410ff75850fb8ac753fd535ac0649bcb9c3f4.tar.gz
Tango-901410ff75850fb8ac753fd535ac0649bcb9c3f4.zip
reduce code size
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common')
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
index efee94611..03745fcef 100644
--- a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
+++ b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
@@ -1100,7 +1100,7 @@ umktime(struct tm *timeptr)
//! \return Returns the result of the conversion.
//
//*****************************************************************************
-unsigned long
+/*unsigned long
ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
{
unsigned long ulRet, ulDigit, ulNeg, ulValid;
@@ -1274,7 +1274,7 @@ ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
//
return(ulNeg ? (0 - ulRet) : ulRet);
}
-
+*/
//*****************************************************************************
//
// An array of the value of ten raised to the power-of-two exponents. This is
@@ -1282,7 +1282,7 @@ ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
// 10^exp.
//
//*****************************************************************************
-static const float g_pfExponents[] =
+/*static const float g_pfExponents[] =
{
1.0e+01,
1.0e+02,
@@ -1290,7 +1290,7 @@ static const float g_pfExponents[] =
1.0e+08,
1.0e+16,
1.0e+32,
-};
+};*/
//*****************************************************************************
//
@@ -1309,7 +1309,7 @@ static const float g_pfExponents[] =
//! \return Returns the result of the conversion.
//
//*****************************************************************************
-float
+/*float
ustrtof(const char *nptr, const char **endptr)
{
unsigned long ulNeg, ulValid;