We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 218fad6 commit 0b60231Copy full SHA for 0b60231
include/SDL_config_macosx.h
@@ -46,7 +46,6 @@
46
#define HAVE_MATH_H 1
47
#define HAVE_SIGNAL_H 1
48
#define HAVE_STDINT_H 1
49
-#define HAVE_STDIO_H 1
50
#define HAVE_STRING_H 1
51
#define HAVE_SYS_TYPES_H 1
52
#define HAVE_LIBUNWIND_H 1
src/stdlib/SDL_string.c
@@ -27,6 +27,7 @@
27
/* This file contains portable string manipulation functions for SDL */
28
29
#include "SDL_stdinc.h"
30
+#include <stdio.h>
31
32
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL) || !defined(HAVE_STRTOUL) || !defined(HAVE_STRTOLL) || !defined(HAVE_STRTOULL) || !defined(HAVE_STRTOD)
33
#define SDL_isupperhex(X) (((X) >= 'A') && ((X) <= 'F'))
0 commit comments