mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
Fix build on FreeBSD
FreeBSD's alloca(3) only needs <stdlib.h>
This commit is contained in:
parent
b6d67560e3
commit
af046c8987
|
@ -28,8 +28,10 @@
|
|||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#else
|
||||
#if !defined(__FreeBSD__)
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Log_SetChannel(ByteStream);
|
||||
|
||||
|
|
Loading…
Reference in a new issue