Fixed alloca include for SunOS (#1319)

features/sdl_renderer3_multiviewports
omar ago%!(EXTRA string=8 years)
parent 3420080a35
commit 65632d2682
  1. 6
      imgui_draw.cpp

@ -21,10 +21,10 @@
#if !defined(alloca)
#ifdef _WIN32
#include <malloc.h> // alloca
#elif !defined(__GLIBC__)
#include <stdlib.h> // alloca
#elif defined(__GLIBC__) || defined(__sun)
#include <alloca.h> // alloca
#else
#include <alloca.h> // alloca. glibc has an alloca specific header
#include <stdlib.h> // alloca
#endif
#endif

Loading…
Cancel
Save