From ea164f9aef723b0d447ab1253b5f8a1c61b67d17 Mon Sep 17 00:00:00 2001
From: Martin Stjernholm <mast@lysator.liu.se>
Date: Fri, 14 Nov 2003 01:52:20 +0100
Subject: [PATCH] Including las.h (via array.h via callback.h via main.h) no
 longer implies including program.h, so we don't get pike_macros.h included
 automatically here.

Rev: src/fsort.c:1.22
---
 src/fsort.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/fsort.c b/src/fsort.c
index a6c31d708e..6881749678 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.21 2002/10/11 01:39:31 nilsson Exp $
+|| $Id: fsort.c,v 1.22 2003/11/14 00:52:20 mast Exp $
 */
 
 /* fsort- a smarter quicksort /Hubbe */
@@ -12,8 +12,9 @@
 #include "pike_error.h"
 #include "fsort.h"
 #include "main.h"
+#include "pike_macros.h"
 
-RCSID("$Id: fsort.c,v 1.21 2002/10/11 01:39:31 nilsson Exp $");
+RCSID("$Id: fsort.c,v 1.22 2003/11/14 00:52:20 mast Exp $");
 
 #define CMP(X,Y) ( (*cmpfun)((void *)(X),(void *)(Y)) )
 #define EXTRA_ARGS ,fsortfun cmpfun
-- 
GitLab