From ce5a40be394a2ecccee92d5dbdf4f5981f39d116 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sun, 7 Dec 1997 22:49:14 +0100
Subject: [PATCH] Minor change in the way things are included.

Rev: src/modules/Msql/msqlmod.c:1.5
Rev: src/modules/Postgres/pg_types.h:1.2
Rev: src/modules/Postgres/pgresult.c:1.3
Rev: src/modules/Postgres/postgres.c:1.3
---
 src/modules/Msql/msqlmod.c      | 26 +++++++++++++-------------
 src/modules/Postgres/pg_types.h |  4 ++--
 src/modules/Postgres/pgresult.c | 16 ++++++++--------
 src/modules/Postgres/postgres.c | 22 +++++++++++-----------
 4 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/src/modules/Msql/msqlmod.c b/src/modules/Msql/msqlmod.c
index 34ecd02e42..e3dd65f104 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 bcad9bcedc..4fff04bcde 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 edf842d6cd..a8f1bd6ca8 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 4bde4e87e6..261c960242 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)
 
-- 
GitLab