summaryrefslogtreecommitdiff
path: root/nuttx/include/stdlib.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-13 02:49:10 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-13 02:49:10 +0000
commitcad9ed8e13b1b5e7448f41a71837d0e52ca0ad42 (patch)
tree78792e9d8701bc3b38f60de71caff9786884c875 /nuttx/include/stdlib.h
parentd455b6a25a41db11963610dca5f4a63eee1a316c (diff)
downloadpx4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.tar.gz
px4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.tar.bz2
px4-nuttx-cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42.zip
STM32 fixes for F4 32-bit timers
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4300 42af7a65-404d-4744-a932-0658087f49c3
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 febdd7025..b9b9346b5 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 */