summaryrefslogtreecommitdiffstats
path: root/nuttx/include/stdlib.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2007-02-20 22:39:56 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2007-02-20 22:39:56 +0000
commit560c075bdd4e219ade2299ccdcd032e314d626b8 (patch)
treef640e5eab1ce66cdeadd0ab3684ea326f56db8a5 /nuttx/include/stdlib.h
parent93d21048f12d9196232562508f4a8c9002432613 (diff)
Eliminating GCC dependencies
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@14 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include/stdlib.h')
-rw-r--r--nuttx/include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/stdlib.h b/nuttx/include/stdlib.h
index c5cf3edda3..ba4f2b502a 100644
--- a/nuttx/include/stdlib.h
+++ b/nuttx/include/stdlib.h
@@ -97,7 +97,7 @@ EXTERN int atexit(void (*func)(void));
/* String to binary conversions */
#define atoi(nptr) strtol((nptr), (char**)NULL, 10)
EXTERN long strtol(const char *, char **, int);
-EXTERN double strtod(const char *, char **);
+EXTERN double_t strtod(const char *, char **);
/* Memory Management */
EXTERN void *malloc(size_t);