From 934049eb9a41bd5a7b49337e242402736e1630a9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 4 Jul 1998 19:18:30 +0200
Subject: [PATCH] Moved include of global.h first.

Rev: src/encode.c:1.17
Rev: src/modules/Image/colortable.c:1.31
Rev: src/modules/Image/encodings/gif.c:1.22
Rev: src/modules/Image/encodings/png.c:1.3
Rev: src/modules/Image/encodings/pnm.c:1.9
Rev: src/modules/Image/font.c:1.23
Rev: src/modules/MIME/mime.c:1.11
Rev: src/modules/Mysql/mysql.c:1.16
Rev: src/operators.c:1.22
---
 src/encode.c                      |  2 +-
 src/modules/Image/colortable.c    | 11 ++++++-----
 src/modules/Image/encodings/gif.c |  9 +++++----
 src/modules/Image/encodings/png.c |  9 +++++----
 src/modules/Image/encodings/pnm.c |  9 +++++----
 src/modules/Image/font.c          | 10 +++++-----
 src/modules/MIME/mime.c           |  7 ++++---
 src/modules/Mysql/mysql.c         |  8 +++++---
 src/operators.c                   |  4 ++--
 9 files changed, 38 insertions(+), 31 deletions(-)

diff --git a/src/encode.c b/src/encode.c
index b581b83cf5..e87e966e74 100644
--- a/src/encode.c
+++ b/src/encode.c
@@ -3,8 +3,8 @@
 ||| Pike is distributed as GPL (General Public License)
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
-#include "stralloc.h"
 #include "global.h"
+#include "stralloc.h"
 #include "pike_macros.h"
 #include "object.h"
 #include "constants.h"
diff --git a/src/modules/Image/colortable.c b/src/modules/Image/colortable.c
index 86759d59cc..8358675cbb 100644
--- a/src/modules/Image/colortable.c
+++ b/src/modules/Image/colortable.c
@@ -1,11 +1,13 @@
-#include <config.h>
+/* $Id: colortable.c,v 1.31 1998/07/04 17:16:27 grubba Exp $ */
 
-/* $Id: colortable.c,v 1.30 1998/03/03 22:30:28 hubbe Exp $ */
+#include "global.h"
+
+#include "config.h"
 
 /*
 **! module Image
 **! note
-**!	$Id: colortable.c,v 1.30 1998/03/03 22:30:28 hubbe Exp $
+**!	$Id: colortable.c,v 1.31 1998/07/04 17:16:27 grubba Exp $
 **! class colortable
 **!
 **!	This object keeps colortable information,
@@ -20,8 +22,7 @@
 #undef COLORTABLE_DEBUG
 #undef COLORTABLE_REDUCE_DEBUG
 
-#include "global.h"
-RCSID("$Id: colortable.c,v 1.30 1998/03/03 22:30:28 hubbe Exp $");
+RCSID("$Id: colortable.c,v 1.31 1998/07/04 17:16:27 grubba Exp $");
 
 #include <sys/types.h>
 #include <sys/stat.h>
diff --git a/src/modules/Image/encodings/gif.c b/src/modules/Image/encodings/gif.c
index a7e790b4fb..0275fe414d 100644
--- a/src/modules/Image/encodings/gif.c
+++ b/src/modules/Image/encodings/gif.c
@@ -1,9 +1,9 @@
-/* $Id: gif.c,v 1.21 1998/03/03 11:24:45 hubbe Exp $ */
+/* $Id: gif.c,v 1.22 1998/07/04 17:14:52 grubba Exp $ */
 
 /*
 **! module Image
 **! note
-**!	$Id: gif.c,v 1.21 1998/03/03 11:24:45 hubbe Exp $
+**!	$Id: gif.c,v 1.22 1998/07/04 17:14:52 grubba Exp $
 **! submodule GIF
 **!
 **!	This submodule keep the GIF encode/decode capabilities
@@ -26,12 +26,13 @@
 **! see also: Image, Image.image, Image.colortable
 */
 
+#include "global.h"
+
 #include <math.h>
 #include <ctype.h>
 
 #include "stralloc.h"
-#include "global.h"
-RCSID("$Id: gif.c,v 1.21 1998/03/03 11:24:45 hubbe Exp $");
+RCSID("$Id: gif.c,v 1.22 1998/07/04 17:14:52 grubba Exp $");
 #include "pike_macros.h"
 #include "object.h"
 #include "constants.h"
diff --git a/src/modules/Image/encodings/png.c b/src/modules/Image/encodings/png.c
index 90ed492b63..26f28ac9e6 100644
--- a/src/modules/Image/encodings/png.c
+++ b/src/modules/Image/encodings/png.c
@@ -1,9 +1,9 @@
-/* $Id: png.c,v 1.2 1998/03/03 11:24:45 hubbe Exp $ */
+/* $Id: png.c,v 1.3 1998/07/04 17:15:44 grubba Exp $ */
 
 /*
 **! module Image
 **! note
-**!	$Id: png.c,v 1.2 1998/03/03 11:24:45 hubbe Exp $
+**!	$Id: png.c,v 1.3 1998/07/04 17:15:44 grubba Exp $
 **! submodule PNG
 **!
 **!	This submodule keep the PNG encode/decode capabilities
@@ -18,12 +18,13 @@
 **! see also: Image, Image.image, Image.colortable
 */
 
+#include "global.h"
+
 #include <math.h>
 #include <ctype.h>
 
 #include "stralloc.h"
-#include "global.h"
-RCSID("$Id: png.c,v 1.2 1998/03/03 11:24:45 hubbe Exp $");
+RCSID("$Id: png.c,v 1.3 1998/07/04 17:15:44 grubba Exp $");
 #include "pike_macros.h"
 #include "object.h"
 #include "constants.h"
diff --git a/src/modules/Image/encodings/pnm.c b/src/modules/Image/encodings/pnm.c
index 6a06b1ff88..5e35965e60 100644
--- a/src/modules/Image/encodings/pnm.c
+++ b/src/modules/Image/encodings/pnm.c
@@ -1,9 +1,9 @@
-/* $Id: pnm.c,v 1.8 1998/06/22 16:41:38 grubba Exp $ */
+/* $Id: pnm.c,v 1.9 1998/07/04 17:15:21 grubba Exp $ */
 
 /*
 **! module Image
 **! note
-**!	$Id: pnm.c,v 1.8 1998/06/22 16:41:38 grubba Exp $
+**!	$Id: pnm.c,v 1.9 1998/07/04 17:15:21 grubba Exp $
 **! submodule PNM
 **!
 **!	This submodule keeps the PNM encode/decode capabilities
@@ -44,12 +44,13 @@
 **! see also: Image, Image.image, Image.GIF
 */
 
+#include "global.h"
+
 #include <math.h>
 #include <ctype.h>
 
 #include "stralloc.h"
-#include "global.h"
-RCSID("$Id: pnm.c,v 1.8 1998/06/22 16:41:38 grubba Exp $");
+RCSID("$Id: pnm.c,v 1.9 1998/07/04 17:15:21 grubba Exp $");
 #include "pike_macros.h"
 #include "object.h"
 #include "constants.h"
diff --git a/src/modules/Image/font.c b/src/modules/Image/font.c
index 8ae179ea27..c542761614 100644
--- a/src/modules/Image/font.c
+++ b/src/modules/Image/font.c
@@ -1,12 +1,14 @@
-/* $Id: font.c,v 1.22 1998/03/03 11:24:43 hubbe Exp $ */
-#include <config.h>
+/* $Id: font.c,v 1.23 1998/07/04 17:14:26 grubba Exp $ */
+#include "global.h"
+
+#include "config.h"
 
 #define SPACE_CHAR 'i'
 
 /*
 **! module Image
 **! note
-**!	$Id: font.c,v 1.22 1998/03/03 11:24:43 hubbe Exp $
+**!	$Id: font.c,v 1.23 1998/07/04 17:14:26 grubba Exp $
 **! class font
 **!
 **! note
@@ -93,8 +95,6 @@ Kerningtable types:
 
 
 
-#include "global.h"
-
 #include <sys/types.h>
 #include <sys/stat.h>
 
diff --git a/src/modules/MIME/mime.c b/src/modules/MIME/mime.c
index da5c9af598..8c2c7d4057 100644
--- a/src/modules/MIME/mime.c
+++ b/src/modules/MIME/mime.c
@@ -1,15 +1,16 @@
 /*
- * $Id: mime.c,v 1.10 1997/06/26 01:02:48 marcus Exp $
+ * $Id: mime.c,v 1.11 1998/07/04 17:16:51 grubba Exp $
  *
  * RFC1521 functionality for Pike
  *
  * Marcus Comstedt 1996-1997
  */
 
+#include "global.h"
+
 #include "config.h"
 
-#include "global.h"
-RCSID("$Id: mime.c,v 1.10 1997/06/26 01:02:48 marcus Exp $");
+RCSID("$Id: mime.c,v 1.11 1998/07/04 17:16:51 grubba Exp $");
 #include "stralloc.h"
 #include "pike_macros.h"
 #include "object.h"
diff --git a/src/modules/Mysql/mysql.c b/src/modules/Mysql/mysql.c
index 2d021fcbbe..00e6fa1d8c 100644
--- a/src/modules/Mysql/mysql.c
+++ b/src/modules/Mysql/mysql.c
@@ -1,11 +1,14 @@
 /*
- * $Id: mysql.c,v 1.15 1998/03/16 14:55:03 grubba Exp $
+ * $Id: mysql.c,v 1.16 1998/07/04 17:18:01 grubba Exp $
  *
  * SQL database functionality for Pike
  *
  * Henrik Grubbström 1996-12-21
  */
 
+/* Pike master headerfile */
+#include "global.h"
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif /* HAVE_CONFIG_H */
@@ -44,7 +47,6 @@ typedef struct dynamic_buffer_s dynamic_buffer;
 #endif /* HAVE_MYSQL */
 
 /* From the Pike-dist */
-#include "global.h"
 #include "svalue.h"
 #include "object.h"
 #include "stralloc.h"
@@ -73,7 +75,7 @@ typedef struct dynamic_buffer_s dynamic_buffer;
  * Globals
  */
 
-RCSID("$Id: mysql.c,v 1.15 1998/03/16 14:55:03 grubba Exp $");
+RCSID("$Id: mysql.c,v 1.16 1998/07/04 17:18:01 grubba Exp $");
 
 struct program *mysql_program = NULL;
 
diff --git a/src/operators.c b/src/operators.c
index dbc6eb4b0a..9cb1f93997 100644
--- a/src/operators.c
+++ b/src/operators.c
@@ -3,9 +3,9 @@
 ||| Pike is distributed as GPL (General Public License)
 ||| See the files COPYING and DISCLAIMER for more information.
 \*/
-#include <math.h>
 #include "global.h"
-RCSID("$Id: operators.c,v 1.21 1997/12/03 22:46:17 hubbe Exp $");
+#include <math.h>
+RCSID("$Id: operators.c,v 1.22 1998/07/04 17:18:30 grubba Exp $");
 #include "interpret.h"
 #include "svalue.h"
 #include "multiset.h"
-- 
GitLab