diff options
author | Anton Yabchinskiy <arn@bestmx.ru> | 2014-11-20 00:12:01 +0300 |
---|---|---|
committer | Anton Yabchinskiy <arn@bestmx.ru> | 2015-11-20 23:35:53 +0300 |
commit | 52f1bab6d5dffe163bb20886bc725530495dc8c2 (patch) | |
tree | d8ee41b7206cc3571a65b8e9ca4c2d174b0846ac | |
parent | 0931eed7be854ee6e0d0473b715dda2b6f2839e2 (diff) |
Include stdlib.h for alloca() on OpenBSD
-rw-r--r-- | platform/x11/platform_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/platform_config.h b/platform/x11/platform_config.h index c01d0aa380..1556b56058 100644 --- a/platform/x11/platform_config.h +++ b/platform/x11/platform_config.h @@ -29,7 +29,7 @@ #ifdef __linux__ #include <alloca.h> #endif -#ifdef __FreeBSD__ +#if defined(__FreeBSD__) || defined(__OpenBSD__) #include <stdlib.h> #endif |