mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-08 22:59:16 +00:00
Merge pull request #563 from mneumann/fix_dragonfly
Fix compilation on DragonFly BSD
This commit is contained in:
commit
39c9bb73e8
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue