浏览代码

SDL_stdinc.h: define _DARWIN_C_SOURCE on macOS for memset_pattern4()

hopefully fixes https://bugzilla.libsdl.org/show_bug.cgi?id=5107
Ozkan Sezer 5 年之前
父节点
当前提交
79221e85a0
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      include/SDL_stdinc.h

+ 4 - 0
include/SDL_stdinc.h

@@ -30,6 +30,10 @@
 
 #include "SDL_config.h"
 
+#ifdef __APPLE__
+#define _DARWIN_C_SOURCE /* for memset_pattern4() */
+#endif
+
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif