mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Portability fix (using 'char' as argument to C functions may give warnings)
This commit is contained in:
@@ -225,7 +225,7 @@ extern long strtol(const char *str, char **ptr, int base);
|
||||
extern ulong strtoul(const char *str, char **ptr, int base);
|
||||
#endif
|
||||
|
||||
extern char *int2str(long val, char *dst, int radix, char upcase);
|
||||
extern char *int2str(long val, char *dst, int radix, int upcase);
|
||||
extern char *int10_to_str(long val,char *dst,int radix);
|
||||
extern char *str2int(const char *src,int radix,long lower,long upper,
|
||||
long *val);
|
||||
|
Reference in New Issue
Block a user