1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-12 02:00:58 +01:00

Fixed alloca include for SunOS (#1319)

This commit is contained in:
omar 2017-09-12 11:55:13 +02:00
parent 3420080a35
commit 65632d2682

View File

@ -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