diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index a1460f4c6..4c3940333 100644 --- a/include/common.h +++ b/include/common.h @@ -459,6 +459,9 @@ int	init_timebase (void);  /* lib_generic/vsprintf.c */  ulong	simple_strtoul(const char *cp,char **endp,unsigned int base); +#if CFG_64BIT_VSPRINTF +unsigned long long	simple_strtoull(const char *cp,char **endp,unsigned int base); +#endif  long	simple_strtol(const char *cp,char **endp,unsigned int base);  void	panic(const char *fmt, ...);  int	sprintf(char * buf, const char *fmt, ...); |