Browse Source

Add #if defined(__FreeBSD__) to avoid #include <alloca.h> on FreeBSD

pull/1644/head
Yuri Victorovich 3 years ago
parent
commit
5aba957f3c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/modules/ysfx/sources/ysfx_utils.hpp

+ 1
- 1
source/modules/ysfx/sources/ysfx_utils.hpp View File

@@ -26,7 +26,7 @@
#if defined(__APPLE__)
# include <xlocale.h>
#endif
#if !defined(_WIN32)
#if !defined(_WIN32) && !defined(__FreeBSD__)
# include <alloca.h>
#else
# include <malloc.h>


Loading…
Cancel
Save