Kaynağa Gözat

Merge pull request #1319 from RyuKojiro/more_portable_alloca_include-ocornut

Simplify alloca.h include condition (fix for NetBSD)
omar 8 yıl önce
ebeveyn
işleme
3420080a35
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3 3
      imgui_draw.cpp

+ 3 - 3
imgui_draw.cpp

@@ -21,10 +21,10 @@
 #if !defined(alloca)
 #ifdef _WIN32
 #include <malloc.h>     // alloca
-#elif (defined(__FreeBSD__) || defined(FreeBSD_kernel) || defined(__DragonFly__)) && !defined(__GLIBC__)
-#include <stdlib.h>     // alloca. FreeBSD uses stdlib.h unless GLIBC
+#elif !defined(__GLIBC__)
+#include <stdlib.h>     // alloca
 #else
-#include <alloca.h>     // alloca
+#include <alloca.h>     // alloca. glibc has an alloca specific header
 #endif
 #endif