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 1413940..c11dcff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 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:
        * vala/valadatatype.vala:
 
index 834c5f6..e09ab0b 100644 (file)
@@ -23,6 +23,7 @@
  */
 
 #include <string.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
 #include <glib.h>
index 593c058..093b44f 100644 (file)
@@ -30,6 +30,7 @@
 %{
 #include <ctype.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 #include "scanner.h"
 #include "scannerparser.h"