1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-09 15:50:21 +00:00

Fix implicit declaration of getenv and atol

* src/gtkutil.c: Include <stdlib.h>.
This commit is contained in:
Andreas Schwab 2020-01-15 10:02:10 +01:00
parent a4e4510ccd
commit add0610ec9

View File

@ -22,6 +22,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#ifdef USE_GTK
#include <float.h>
#include <stdio.h>
#include <stdlib.h>
#include <c-ctype.h>