diff options
| author | Andreas Schwab | 2020-01-15 10:02:10 +0100 |
|---|---|---|
| committer | Andreas Schwab | 2020-01-15 10:11:24 +0100 |
| commit | e31287e704a539ebef777d92e4d06d4b1d912b2a (patch) | |
| tree | 03b119260a7c7f8450c0f5ea1168473a83399b42 | |
| parent | 06caa3b7e5e9fe91b6918f8567adbd5501d6dbdd (diff) | |
| download | emacs-tmp.tar.gz emacs-tmp.zip | |
Fix implicit declaration of getenv and atoltmp
* src/gtkutil.c: Include <stdlib.h>.
| -rw-r--r-- | src/gtkutil.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 6308c38f164..5e7cf3d2114 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -22,6 +22,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 22 | #ifdef USE_GTK | 22 | #ifdef USE_GTK |
| 23 | #include <float.h> | 23 | #include <float.h> |
| 24 | #include <stdio.h> | 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> | ||
| 25 | 26 | ||
| 26 | #include <c-ctype.h> | 27 | #include <c-ctype.h> |
| 27 | 28 | ||