summaryrefslogtreecommitdiffstats
path: root/nuttx/include/stdlib.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-01-13 02:49:10 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-01-13 02:49:10 +0000
commitafc559e4d4e72d1f55eac5169ddc51733aca2f46 (patch)
tree78792e9d8701bc3b38f60de71caff9786884c875 /nuttx/include/stdlib.h
parent5fe7aeb0a5c74e12274706ccfc1fb61ef4f371a5 (diff)
STM32 fixes for F4 32-bit timers
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4300 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include/stdlib.h')
-rw-r--r--nuttx/include/stdlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/include/stdlib.h b/nuttx/include/stdlib.h
index febdd70255..b9b9346b55 100644
--- a/nuttx/include/stdlib.h
+++ b/nuttx/include/stdlib.h
@@ -144,12 +144,12 @@ EXTERN unsigned long long strtoull(const char *, char **, int);
#endif
EXTERN double_t strtod(const char *, char **);
-#define atoi(nptr) strtol((nptr), NULL, 10);
-#define atol(nptr) strtol((nptr), NULL, 10);
+#define atoi(nptr) strtol((nptr), NULL, 10)
+#define atol(nptr) strtol((nptr), NULL, 10)
#ifdef CONFIG_HAVE_LONG_LONG
-#define atoll(nptr) strtoll((nptr), NULL, 10);
+#define atoll(nptr) strtoll((nptr), NULL, 10)
#endif
-#define atof(nptr) strtod((nptr), NULL);
+#define atof(nptr) strtod((nptr), NULL)
/* Memory Management */