From 38f0228e9eb2a6e14cb4550f8d76626acacc06bc 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 23:01:35 +0100 Subject: [PATCH] Minor change in the way that things are included. Rev: src/modules/Oracle/oracle.c:1.6 Rev: src/modules/Regexp/glue.c:1.8 Rev: src/modules/_Crypto/include/crypto_types.h:1.4 Rev: src/modules/spider/accesseddb.c:1.11 Rev: src/modules/spider/dumudp.c:1.28 Rev: src/modules/spider/spider.c:1.48 Rev: src/modules/spider/stardate.c:1.6 Rev: src/modules/system/passwords.c:1.5 Rev: src/modules/system/syslog.c:1.4 Rev: src/modules/system/system.c:1.31 --- src/modules/Oracle/oracle.c | 28 +++++++++++----------- src/modules/Regexp/glue.c | 2 +- src/modules/_Crypto/include/crypto_types.h | 4 ++-- src/modules/spider/accesseddb.c | 2 +- src/modules/spider/dumudp.c | 4 ++-- src/modules/spider/spider.c | 4 ++-- src/modules/spider/stardate.c | 2 +- src/modules/system/passwords.c | 18 +++++++------- src/modules/system/syslog.c | 18 +++++++------- src/modules/system/system.c | 24 +++++++++---------- 10 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/modules/Oracle/oracle.c b/src/modules/Oracle/oracle.c index bd14507975..b8c18df4e1 100644 --- a/src/modules/Oracle/oracle.c +++ b/src/modules/Oracle/oracle.c @@ -1,5 +1,5 @@ /* - * $Id: oracle.c,v 1.5 1997/09/26 21:05:44 marcus Exp $ + * $Id: oracle.c,v 1.6 1997/12/07 21:50:48 grubba Exp $ * * Pike interface to Oracle databases. * @@ -14,18 +14,18 @@ #include "config.h" #endif /* HAVE_CONFIG_H */ -#include <global.h> -#include <svalue.h> -#include <object.h> -#include <array.h> -#include <stralloc.h> -#include <interpret.h> -#include <pike_types.h> -#include <pike_memory.h> -#include <threads.h> -#include <module_support.h> -#include <mapping.h> -#include <builtin_functions.h> +#include "global.h" +#include "svalue.h" +#include "object.h" +#include "array.h" +#include "stralloc.h" +#include "interpret.h" +#include "pike_types.h" +#include "pike_memory.h" +#include "threads.h" +#include "module_support.h" +#include "mapping.h" +#include "builtin_functions.h" #ifdef HAVE_ORACLE @@ -34,7 +34,7 @@ #endif -RCSID("$Id: oracle.c,v 1.5 1997/09/26 21:05:44 marcus Exp $"); +RCSID("$Id: oracle.c,v 1.6 1997/12/07 21:50:48 grubba Exp $"); #ifdef HAVE_ORACLE diff --git a/src/modules/Regexp/glue.c b/src/modules/Regexp/glue.c index 837fdf99aa..d6eda2a4cf 100644 --- a/src/modules/Regexp/glue.c +++ b/src/modules/Regexp/glue.c @@ -27,7 +27,7 @@ struct regexp_glue int num_paren; }; #else -#include <pike_regexp.h> +#include "pike_regexp.h" struct regexp_glue { diff --git a/src/modules/_Crypto/include/crypto_types.h b/src/modules/_Crypto/include/crypto_types.h index 5e66429333..b6883e8b10 100644 --- a/src/modules/_Crypto/include/crypto_types.h +++ b/src/modules/_Crypto/include/crypto_types.h @@ -6,8 +6,8 @@ #define CRYPTO_TYPES_H_INCLUDED #ifdef PIKE -#include <pike_types.h> -#include <global.h> +#include "pike_types.h" +#include "global.h" #else /* !PIKE */ #define INT32 long #define INT16 short diff --git a/src/modules/spider/accesseddb.c b/src/modules/spider/accesseddb.c index 35a4b5068b..ecea475466 100644 --- a/src/modules/spider/accesseddb.c +++ b/src/modules/spider/accesseddb.c @@ -1,4 +1,4 @@ -#include <config.h> +#include "config.h" #include "stralloc.h" #include "global.h" diff --git a/src/modules/spider/dumudp.c b/src/modules/spider/dumudp.c index 8dbdabb1e3..fb6f401946 100644 --- a/src/modules/spider/dumudp.c +++ b/src/modules/spider/dumudp.c @@ -1,7 +1,7 @@ -#include <config.h> +#include "config.h" #include "global.h" -RCSID("$Id: dumudp.c,v 1.27 1997/10/14 01:06:39 grubba Exp $"); +RCSID("$Id: dumudp.c,v 1.28 1997/12/07 21:58:12 grubba Exp $"); #include "interpret.h" #include "svalue.h" #include "stralloc.h" diff --git a/src/modules/spider/spider.c b/src/modules/spider/spider.c index a539d212f2..5c4640b041 100644 --- a/src/modules/spider/spider.c +++ b/src/modules/spider/spider.c @@ -1,4 +1,4 @@ -#include <config.h> +#include "config.h" #include "machine.h" @@ -40,7 +40,7 @@ #include "threads.h" #include "operators.h" -RCSID("$Id: spider.c,v 1.47 1997/12/06 03:47:13 grubba Exp $"); +RCSID("$Id: spider.c,v 1.48 1997/12/07 21:56:42 grubba Exp $"); #ifdef HAVE_PWD_H #include <pwd.h> diff --git a/src/modules/spider/stardate.c b/src/modules/spider/stardate.c index 64fdff266c..cf05831fcd 100644 --- a/src/modules/spider/stardate.c +++ b/src/modules/spider/stardate.c @@ -1,4 +1,4 @@ -#include <config.h> +#include "config.h" #include "stralloc.h" #include "global.h" diff --git a/src/modules/system/passwords.c b/src/modules/system/passwords.c index 945054391e..321a635dfd 100644 --- a/src/modules/system/passwords.c +++ b/src/modules/system/passwords.c @@ -1,5 +1,5 @@ /* - * $Id: passwords.c,v 1.4 1997/09/07 11:37:00 per Exp $ + * $Id: passwords.c,v 1.5 1997/12/07 22:00:27 grubba Exp $ * * Password handling for Pike. * @@ -13,16 +13,16 @@ #include "system_machine.h" #include "system.h" -#include <global.h> +#include "global.h" -RCSID("$Id: passwords.c,v 1.4 1997/09/07 11:37:00 per Exp $"); +RCSID("$Id: passwords.c,v 1.5 1997/12/07 22:00:27 grubba Exp $"); -#include <module_support.h> -#include <interpret.h> -#include <stralloc.h> -#include <threads.h> -#include <svalue.h> -#include <builtin_functions.h> +#include "module_support.h" +#include "interpret.h" +#include "stralloc.h" +#include "threads.h" +#include "svalue.h" +#include "builtin_functions.h" #ifdef HAVE_PASSWD_H # include <passwd.h> diff --git a/src/modules/system/syslog.c b/src/modules/system/syslog.c index 74eeede36e..9249e80da6 100644 --- a/src/modules/system/syslog.c +++ b/src/modules/system/syslog.c @@ -1,5 +1,5 @@ /* - * $Id: syslog.c,v 1.3 1997/04/16 03:14:05 hubbe Exp $ + * $Id: syslog.c,v 1.4 1997/12/07 21:59:15 grubba Exp $ * * Access to syslog from Pike. * @@ -13,18 +13,18 @@ #include "system_machine.h" #include "system.h" -#include <global.h> +#include "global.h" #ifdef HAVE_SYSLOG -RCSID("$Id: syslog.c,v 1.3 1997/04/16 03:14:05 hubbe Exp $"); +RCSID("$Id: syslog.c,v 1.4 1997/12/07 21:59:15 grubba Exp $"); -#include <interpret.h> -#include <svalue.h> -#include <stralloc.h> -#include <threads.h> -#include <module_support.h> -#include <builtin_functions.h> +#include "interpret.h" +#include "svalue.h" +#include "stralloc.h" +#include "threads.h" +#include "module_support.h" +#include "builtin_functions.h" #ifdef HAVE_SYSLOG_H #include <syslog.h> diff --git a/src/modules/system/system.c b/src/modules/system/system.c index b7c9fa464d..deb83401e3 100644 --- a/src/modules/system/system.c +++ b/src/modules/system/system.c @@ -1,5 +1,5 @@ /* - * $Id: system.c,v 1.30 1997/10/25 18:10:00 grubba Exp $ + * $Id: system.c,v 1.31 1997/12/07 22:01:35 grubba Exp $ * * System-call module for Pike * @@ -13,17 +13,17 @@ #include "system_machine.h" #include "system.h" -#include <global.h> -RCSID("$Id: system.c,v 1.30 1997/10/25 18:10:00 grubba Exp $"); -#include <module_support.h> -#include <las.h> -#include <interpret.h> -#include <stralloc.h> -#include <threads.h> -#include <svalue.h> -#include <mapping.h> -#include <builtin_functions.h> -#include <constants.h> +#include "global.h" +RCSID("$Id: system.c,v 1.31 1997/12/07 22:01:35 grubba Exp $"); +#include "module_support.h" +#include "las.h" +#include "interpret.h" +#include "stralloc.h" +#include "threads.h" +#include "svalue.h" +#include "mapping.h" +#include "builtin_functions.h" +#include "constants.h" #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> -- GitLab