Fix header inclusion. (#473879, Peter Kjellerstedt)

2007-09-05  Behdad Esfahbod  <behdad@gnome.org>

        * glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)


svn path=/trunk/; revision=5735
This commit is contained in:
Behdad Esfahbod 2007-09-05 15:44:52 +00:00 committed by Behdad Esfahbod
parent ff3b2b88c7
commit 2f14244e24
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2007-09-05 Behdad Esfahbod <behdad@gnome.org>
* glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)
Wed Aug 29 12:08:40 2007 Tim Janik <timj@imendio.com>
* glib/gthread.h (g_once_init_enter): fixed compiler warning about

View File

@ -19,14 +19,14 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include "config.h"
#include "gregex.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <string.h>
#include "glib.h"
#include "glibintl.h"
#include "gregex.h"
#ifdef USE_SYSTEM_PCRE
#include <pcre.h>
#else