Skip to content
Snippets Groups Projects
Commit ea164f9a authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

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
parent a5365b58
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || 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 */ /* fsort- a smarter quicksort /Hubbe */
...@@ -12,8 +12,9 @@ ...@@ -12,8 +12,9 @@
#include "pike_error.h" #include "pike_error.h"
#include "fsort.h" #include "fsort.h"
#include "main.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 CMP(X,Y) ( (*cmpfun)((void *)(X),(void *)(Y)) )
#define EXTRA_ARGS ,fsortfun cmpfun #define EXTRA_ARGS ,fsortfun cmpfun
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment