From: Jürg Billeter Date: Fri, 26 Sep 2008 20:09:31 +0000 (+0000) Subject: Add missing stdlib.h include, patch by Alexander Bokovoy, fixes bug 547569 X-Git-Tag: VALA_0_4_0~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7219ffda017ab5ea6b466e2d580e4fcefa84510f;p=platform%2Fupstream%2Fvala.git Add missing stdlib.h include, patch by Alexander Bokovoy, fixes bug 547569 2008-09-26 Jürg Billeter * 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 --- diff --git a/ChangeLog b/ChangeLog index 1413940..c11dcff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2008-09-26 Jürg Billeter + * 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 + * vala/valaarraytype.vala: * vala/valadatatype.vala: diff --git a/gobject-introspection/scanner.c b/gobject-introspection/scanner.c index 834c5f6..e09ab0b 100644 --- a/gobject-introspection/scanner.c +++ b/gobject-introspection/scanner.c @@ -23,6 +23,7 @@ */ #include +#include #include #include #include diff --git a/gobject-introspection/scannerlexer.l b/gobject-introspection/scannerlexer.l index 593c058..093b44f 100644 --- a/gobject-introspection/scannerlexer.l +++ b/gobject-introspection/scannerlexer.l @@ -30,6 +30,7 @@ %{ #include #include +#include #include "scanner.h" #include "scannerparser.h"