Add required includes

svn path=/trunk/; revision=7452
This commit is contained in:
Matthias Clasen 2008-09-10 22:39:05 +00:00
parent 0b890c6298
commit 8f85da0b5e
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-09-10 Matthias Clasen <mclasen@redhat.com>
Bug 551410 gtestutils.c: using printf without prototype
* glib/gtestutils.c: Include stdio.h. Pointed out by Kazuki Iwamoto.
2008-09-09 Matthias Clasen <mclasen@redhat.com>
Bug 551228 G_STRFUNC on recent Sun compiler should be expanded to

View File

@ -28,6 +28,7 @@
#endif
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif