Ben Millwood fixing his own stuff (#4598)

This commit is contained in:
Thilo Schulz 2011-02-04 16:09:05 +00:00
parent e66abb3237
commit 91f3c1596f
2 changed files with 18 additions and 18 deletions

View file

@ -95,10 +95,10 @@ int toupper( int c );
double atof( const char *string );
double _atof( const char **stringPtr );
double strtod( const char *nptr, const char **endptr );
double strtod( const char *nptr, char **endptr );
int atoi( const char *string );
int _atoi( const char **stringPtr );
long strtol( const char *nptr, const char **endptr, int base );
long strtol( const char *nptr, char **endptr, int base );
int Q_vsnprintf( char *buffer, size_t length, const char *fmt, va_list argptr );
int Q_snprintf( char *buffer, size_t length, const char *fmt, ... ) __attribute__ ((format (printf, 3, 4)));