diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-02-27 21:10:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-27 21:10:05 +0100 |
commit | 6fb164b34470fe4ad4719f3807def33574e6151a (patch) | |
tree | 4cf7891e13da2d90bf8c4032590b22405076ccf2 | |
parent | 55ce8e6ce929f6ff58f9fed8a0a547883deaccb8 (diff) | |
parent | 0ef3d22d98471be082e322d9da95c683ce199fcf (diff) |
Merge pull request #7903 from shlomif/fix-build-compile-error
Fix failing build when ALSA is absent
[ci skip]
-rw-r--r-- | platform/x11/godot_x11.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/x11/godot_x11.cpp b/platform/x11/godot_x11.cpp index b727ecbd17..adb919c2f1 100644 --- a/platform/x11/godot_x11.cpp +++ b/platform/x11/godot_x11.cpp @@ -28,6 +28,7 @@ /*************************************************************************/ #include <unistd.h> #include <limits.h> +#include <stdlib.h> #include "main/main.h" #include "os_x11.h" |