vala r1786 - in trunk: . gobject-introspection



Author: juergbi
Date: Fri Sep 26 20:09:31 2008
New Revision: 1786
URL: http://svn.gnome.org/viewvc/vala?rev=1786&view=rev

Log:
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


Modified:
   trunk/ChangeLog
   trunk/gobject-introspection/scanner.c
   trunk/gobject-introspection/scannerlexer.l

Modified: trunk/gobject-introspection/scanner.c
==============================================================================
--- trunk/gobject-introspection/scanner.c	(original)
+++ trunk/gobject-introspection/scanner.c	Fri Sep 26 20:09:31 2008
@@ -23,6 +23,7 @@
  */
 
 #include <string.h>
+#include <stdlib.h>
 #include <ctype.h>
 #include <errno.h>
 #include <glib.h>

Modified: trunk/gobject-introspection/scannerlexer.l
==============================================================================
--- trunk/gobject-introspection/scannerlexer.l	(original)
+++ trunk/gobject-introspection/scannerlexer.l	Fri Sep 26 20:09:31 2008
@@ -30,6 +30,7 @@
 %{
 #include <ctype.h>
 #include <stdio.h>
+#include <stdlib.h>
 
 #include "scanner.h"
 #include "scannerparser.h"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]