From cad9ed8e13b1b5e7448f41a71837d0e52ca0ad42 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 13 Jan 2012 02:49:10 +0000 Subject: 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 --- nuttx/include/stdlib.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nuttx/include/stdlib.h') 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 */ -- cgit v1.2.3