Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
riscos: Fix iconv warnings
  • Loading branch information
ccawley2011 committed Jan 13, 2019
1 parent 15bae95 commit e7b514d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib/SDL_iconv.c
Expand Up @@ -37,7 +37,7 @@
iconv() may or may not use const char ** for the inbuf param.
If we get this wrong, it's just a warning, so no big deal.
*/
#if defined(_XGP6) || defined(__APPLE__) || \
#if defined(_XGP6) || defined(__APPLE__) || defined(__RISCOS__) || \
defined(__EMSCRIPTEN__) || \
(defined(__GLIBC__) && ((__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)) || \
(defined(_NEWLIB_VERSION)))
Expand Down

0 comments on commit e7b514d

Please sign in to comment.