]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add missing stdlib.h include, patch by Alexander Bokovoy, fixes bug 547569
authorJürg Billeter <j@bitron.ch>
Fri, 26 Sep 2008 20:09:31 +0000 (20:09 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Fri, 26 Sep 2008 20:09:31 +0000 (20:09 +0000)
2008-09-26  Jürg Billeter  <j@bitron.ch>

* gobject-introspection/scanner.c:
* gobject-introspection/scannerlexer.l:

Add missing stdlib.h include,
patch by Alexander Bokovoy, fixes bug 547569

svn path=/trunk/; revision=1786

ChangeLog
gobject-introspection/scanner.c
gobject-introspection/scannerlexer.l

index 14139402a573fcb15f4771fa28a8333a07ae4d59..c11dcfffd0182c961a3d693248f392eef64b30db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-09-26  Jürg Billeter  <j@bitron.ch>
+
+       * gobject-introspection/scanner.c:
+       * gobject-introspection/scannerlexer.l:
+
+       Add missing stdlib.h include,
+       patch by Alexander Bokovoy, fixes bug 547569
+
 2008-09-26  Jürg Billeter  <j@bitron.ch>
 
        * vala/valaarraytype.vala:
index 834c5f6ba603feea4863afff63204e1ea6b75d86..e09ab0baad98b4809786e53f3aca4d3ce33e0f65 100644 (file)
@@ -23,6 +23,7 @@
  */
 
 #include <string.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
 #include <glib.h>
index 593c058c272231e485e0e1486c50c759d7ded3e0..093b44fbafd4a760d731c0d153054748dfbd0cd4 100644 (file)
@@ -30,6 +30,7 @@
 %{
 #include <ctype.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 #include "scanner.h"
 #include "scannerparser.h"