diff --git a/src/modules/Msql/msqlmod.c b/src/modules/Msql/msqlmod.c index 34ecd02e42a22adec631d0dba6cd39e087fce273..e3dd65f1042b4427b548d577275a1bad3207bafe 100644 --- a/src/modules/Msql/msqlmod.c +++ b/src/modules/Msql/msqlmod.c @@ -2,7 +2,7 @@ * This code is (C) Francesco Chemolli, 1997. * You may use, modify and redistribute it freely under the terms * of the GNU General Public License, version 2. - * $Id: msqlmod.c,v 1.4 1997/11/24 21:32:15 grubba Exp $ + * $Id: msqlmod.c,v 1.5 1997/12/07 21:45:30 grubba Exp $ * * This version is intended for Pike/0.5 and later. * It won't compile under older versions of the Pike interpreter. @@ -21,21 +21,21 @@ #include <string.h> #include <stdlib.h> -#include <global.h> -#include <threads.h> -#include <machine.h> -#include <interpret.h> -#include <builtin_functions.h> -#include <module_support.h> -#include <svalue.h> -#include <program.h> -#include <array.h> -#include <mapping.h> -#include <stralloc.h> +#include "global.h" +#include "threads.h" +#include "machine.h" +#include "interpret.h" +#include "builtin_functions.h" +#include "module_support.h" +#include "svalue.h" +#include "program.h" +#include "array.h" +#include "mapping.h" +#include "stralloc.h" #include "operators.h" #include "multiset.h" -RCSID("$Id: msqlmod.c,v 1.4 1997/11/24 21:32:15 grubba Exp $"); +RCSID("$Id: msqlmod.c,v 1.5 1997/12/07 21:45:30 grubba Exp $"); #include "version.h" #ifdef _REENTRANT diff --git a/src/modules/Postgres/pg_types.h b/src/modules/Postgres/pg_types.h index bcad9bcedce5e39f490c690043c2c6ca476d79b9..4fff04bcde540aa015a178018e9d9aeaae5db311 100644 --- a/src/modules/Postgres/pg_types.h +++ b/src/modules/Postgres/pg_types.h @@ -1,8 +1,8 @@ #ifndef _PG_TYPES_H_ #define _PG_TYPES_H_ -#include <program.h> -#include <svalue.h> +#include "program.h" +#include "svalue.h" struct postgres_result_object_data { PGresult * result; diff --git a/src/modules/Postgres/pgresult.c b/src/modules/Postgres/pgresult.c index edf842d6cd02a836b3bc53b679050bb0d0cf2aa8..a8f1bd6ca84ba0d12ad14c379454151430c5de43 100644 --- a/src/modules/Postgres/pgresult.c +++ b/src/modules/Postgres/pgresult.c @@ -52,14 +52,14 @@ #include <libpq-fe.h> /* Pike includes */ -#include <global.h> -#include <stralloc.h> -#include <object.h> -#include <threads.h> -#include <array.h> -#include <mapping.h> -#include <builtin_functions.h> -#include <module_support.h> +#include "global.h" +#include "stralloc.h" +#include "object.h" +#include "threads.h" +#include "array.h" +#include "mapping.h" +#include "builtin_functions.h" +#include "module_support.h" #ifdef _REENTRANT MUTEX_T pike_postgres_result_mutex; diff --git a/src/modules/Postgres/postgres.c b/src/modules/Postgres/postgres.c index 4bde4e87e627290859d8b52612ab248f11c90e4b..261c960242ca946eee48a8b0cff25762b73bc6f9 100644 --- a/src/modules/Postgres/postgres.c +++ b/src/modules/Postgres/postgres.c @@ -20,16 +20,16 @@ #include <string.h> /* Pike includes */ -#include <global.h> -#include <las.h> -#include <machine.h> -#include <pike_memory.h> -#include <svalue.h> -#include <threads.h> -#include <stralloc.h> -#include <object.h> -#include <module_support.h> -#include <operators.h> +#include "global.h" +#include "las.h" +#include "machine.h" +#include "pike_memory.h" +#include "svalue.h" +#include "threads.h" +#include "stralloc.h" +#include "object.h" +#include "module_support.h" +#include "operators.h" /* Postgres includes */ /* A hack, because DEBUG is defined both in pike's machine.h and in postgres */ @@ -62,7 +62,7 @@ static void pgdebug (char * a, ...) {} struct program * postgres_program; -RCSID("$Id: postgres.c,v 1.2 1997/11/25 20:57:59 grubba Exp $"); +RCSID("$Id: postgres.c,v 1.3 1997/12/07 21:49:14 grubba Exp $"); #define THIS ((struct pgres_object_data *) fp->current_storage)