mirror of
https://github.com/apache/nuttx.git
synced 2026-05-23 06:39:01 +08:00
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
This commit is contained in:
+4
-4
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user