From 1a26b280b3d333dd877e456fb1839615b44c2bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 30 Dec 2004 14:44:20 +0100 Subject: [PATCH] Now includes pike_embed.h instead of main.h. Rev: src/docode.c:1.183 Rev: src/fsort.c:1.24 Rev: src/interpret.c:1.361 Rev: src/language.yacc:1.353 Rev: src/opcodes.c:1.166 Rev: src/peep.c:1.105 Rev: src/pike_threadlib.h:1.58 --- src/docode.c | 4 ++-- src/fsort.c | 4 ++-- src/interpret.c | 4 ++-- src/language.yacc | 4 ++-- src/opcodes.c | 4 ++-- src/peep.c | 4 ++-- src/pike_threadlib.h | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/docode.c b/src/docode.c index 9c33473c23..b454487c9f 100644 --- a/src/docode.c +++ b/src/docode.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: docode.c,v 1.182 2004/12/18 18:21:57 grubba Exp $ +|| $Id: docode.c,v 1.183 2004/12/30 13:41:08 grubba Exp $ */ #include "global.h" @@ -17,7 +17,7 @@ #include "pike_error.h" #include "pike_memory.h" #include "svalue.h" -#include "main.h" +#include "pike_embed.h" #include "builtin_functions.h" #include "peep.h" #include "docode.h" diff --git a/src/fsort.c b/src/fsort.c index d7f35319ef..2b3eba5e41 100644 --- a/src/fsort.c +++ b/src/fsort.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: fsort.c,v 1.23 2004/09/18 20:50:50 nilsson Exp $ +|| $Id: fsort.c,v 1.24 2004/12/30 13:41:08 grubba Exp $ */ /* fsort- a smarter quicksort /Hubbe */ @@ -11,7 +11,7 @@ #include "global.h" #include "pike_error.h" #include "fsort.h" -#include "main.h" +#include "pike_embed.h" #include "pike_macros.h" #define CMP(X,Y) ( (*cmpfun)((void *)(X),(void *)(Y)) ) diff --git a/src/interpret.c b/src/interpret.c index 88f6733a49..537c7347f5 100644 --- a/src/interpret.c +++ b/src/interpret.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: interpret.c,v 1.360 2004/12/22 18:46:15 grubba Exp $ +|| $Id: interpret.c,v 1.361 2004/12/30 13:44:20 grubba Exp $ */ #include "global.h" @@ -20,7 +20,7 @@ #include "backend.h" #include "operators.h" #include "opcodes.h" -#include "main.h" +#include "pike_embed.h" #include "lex.h" #include "builtin_functions.h" #include "signal_handler.h" diff --git a/src/language.yacc b/src/language.yacc index 74c9881f49..8c11e2c885 100644 --- a/src/language.yacc +++ b/src/language.yacc @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: language.yacc,v 1.352 2004/12/22 18:46:15 grubba Exp $ +|| $Id: language.yacc,v 1.353 2004/12/30 13:41:08 grubba Exp $ */ %pure_parser @@ -132,7 +132,7 @@ #include "pike_error.h" #include "docode.h" #include "machine.h" -#include "main.h" +#include "pike_embed.h" #include "opcodes.h" #include "operators.h" #include "bignum.h" diff --git a/src/opcodes.c b/src/opcodes.c index b2a1a6b007..f7d65353a6 100644 --- a/src/opcodes.c +++ b/src/opcodes.c @@ -2,14 +2,14 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: opcodes.c,v 1.165 2004/09/30 14:09:07 mast Exp $ +|| $Id: opcodes.c,v 1.166 2004/12/30 13:41:08 grubba Exp $ */ #include "global.h" #include "constants.h" #include "interpret.h" #include "opcodes.h" -#include "main.h" +#include "pike_embed.h" #ifdef INSTR_PROFILING diff --git a/src/peep.c b/src/peep.c index fa63faf7af..89e5f5f367 100644 --- a/src/peep.c +++ b/src/peep.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: peep.c,v 1.104 2004/09/18 20:50:53 nilsson Exp $ +|| $Id: peep.c,v 1.105 2004/12/30 13:41:08 grubba Exp $ */ #include "global.h" @@ -11,7 +11,7 @@ #include "program.h" #include "las.h" #include "docode.h" -#include "main.h" +#include "pike_embed.h" #include "pike_error.h" #include "lex.h" #include "pike_memory.h" diff --git a/src/pike_threadlib.h b/src/pike_threadlib.h index cf521cb467..be919980a4 100644 --- a/src/pike_threadlib.h +++ b/src/pike_threadlib.h @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: pike_threadlib.h,v 1.57 2004/09/13 11:49:35 grubba Exp $ +|| $Id: pike_threadlib.h,v 1.58 2004/12/30 13:41:08 grubba Exp $ */ #ifndef PIKE_THREADLIB_H @@ -17,7 +17,7 @@ #ifndef CONFIGURE_TEST #include "machine.h" -#include "main.h" +#include "pike_embed.h" #include "pike_rusage.h" #endif -- GitLab