Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed infinite recursion (thanks, Rainer!).
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 3, 2013
1 parent d949f75 commit bde4399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stdlib/SDL_string.c
Expand Up @@ -31,8 +31,8 @@
#undef SDL_atof
char *SDL_itoa(int value, char *str, int radix) { return SDL_itoa_inline(value, str, radix); }
char *SDL_uitoa(unsigned int value, char *str, int radix) { return SDL_uitoa_inline(value, str, radix); }
int SDL_atoi(const char *str) { return SDL_atoi(str); }
double SDL_atof(const char *str) { return SDL_atof(str); }
int SDL_atoi(const char *str) { return SDL_atoi_inline(str); }
double SDL_atof(const char *str) { return SDL_atof_inline(str); }



Expand Down

0 comments on commit bde4399

Please sign in to comment.