From a5365b58f3ac5a0d647e46d2760b4fa5bd0d187a Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Fri, 14 Nov 2003 01:47:09 +0100
Subject: [PATCH] block_alloc.h has to be included after any headers that
 include block_alloc_h.h.

Rev: src/interpret.c:1.338
---
 src/interpret.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/interpret.c b/src/interpret.c
index ff5b6c45b3..10c1c65ac9 100644
--- a/src/interpret.c
+++ b/src/interpret.c
@@ -2,11 +2,11 @@
 || 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.337 2003/11/09 01:10:13 mast Exp $
+|| $Id: interpret.c,v 1.338 2003/11/14 00:47:09 mast Exp $
 */
 
 #include "global.h"
-RCSID("$Id: interpret.c,v 1.337 2003/11/09 01:10:13 mast Exp $");
+RCSID("$Id: interpret.c,v 1.338 2003/11/14 00:47:09 mast Exp $");
 #include "interpret.h"
 #include "object.h"
 #include "program.h"
@@ -31,11 +31,12 @@ RCSID("$Id: interpret.c,v 1.337 2003/11/09 01:10:13 mast Exp $");
 #include "callback.h"
 #include "fd_control.h"
 #include "security.h"
-#include "block_alloc.h"
 #include "bignum.h"
 #include "pike_types.h"
 #include "pikecode.h"
 
+#include "block_alloc.h"
+
 #include <fcntl.h>
 #include <errno.h>
 #include <ctype.h>
-- 
GitLab