]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix implicit declaration of getenv and atol
authorAndreas Schwab <schwab@linux-m68k.org>
Wed, 15 Jan 2020 09:02:10 +0000 (10:02 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Tue, 3 Mar 2020 18:42:17 +0000 (19:42 +0100)
* src/gtkutil.c: Include <stdlib.h>.

src/gtkutil.c

index 6308c38f1644b35e39907d8ed43b05a39da6fb80..5e7cf3d21148082de68f5d68a499a69f95e40e1f 100644 (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>