mirror of https://github.com/ocornut/imgui
Fix compilation on DragonFly BSD
This commit is contained in:
parent
5b8aa0dc84
commit
adb4d4d48b
|
@ -18,7 +18,7 @@
|
|||
#include "imgui_internal.h"
|
||||
|
||||
#include <stdio.h> // vsnprintf, sscanf, printf
|
||||
#if !defined(alloca) && !defined(__FreeBSD__)
|
||||
#if !defined(alloca) && !defined(__FreeBSD__) && !defined(__DragonFly__)
|
||||
#ifdef _WIN32
|
||||
#include <malloc.h> // alloca
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue