mirror of
https://github.com/xemu-project/imgui.git
synced 2024-11-23 18:29:51 +00:00
Don't do a bunch of OS gymnastics. alloca.h is only for glibc, everyone else uses stdlib.h
This commit is contained in:
parent
cb2775ae54
commit
cf6ba9dd2d
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user