diff options
author | Po Lu <luangruo@yahoo.com> | 2024-05-19 09:16:59 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2024-05-19 09:16:59 +0800 |
commit | 3c2c6ab733623433150b3bc82598c4bf2563ec87 (patch) | |
tree | e1dd2fbf8c0c5b42d3f6bda0e2e94777af15dd42 | |
parent | 9ec124e59ad3306a732749669f81aa4a870ce936 (diff) | |
download | emacs-3c2c6ab733623433150b3bc82598c4bf2563ec87.tar.gz emacs-3c2c6ab733623433150b3bc82598c4bf2563ec87.tar.bz2 emacs-3c2c6ab733623433150b3bc82598c4bf2563ec87.zip |
Fix Android build
* src/androidfns.c: Include stdlib.h.
-rw-r--r-- | src/androidfns.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/androidfns.c b/src/androidfns.c index 1c2690394a6..4246f6d2be4 100644 --- a/src/androidfns.c +++ b/src/androidfns.c @@ -19,6 +19,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ #include <config.h> #include <math.h> +#include <stdlib.h> #include "lisp.h" #include "android.h" |