diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2015-01-01 22:50:26 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2015-01-01 22:50:26 +0000 |
commit | 82b1f0b4cf88fe5fc757b6718763a3bad5e59166 (patch) | |
tree | 3ceeec7795ad32fedeb9abacc5e181cd846f9593 /editor/specialty | |
parent | 7652f3c840bb58c3dd40933a903943811131c97b (diff) | |
download | netpbm-mirror-82b1f0b4cf88fe5fc757b6718763a3bad5e59166.tar.gz netpbm-mirror-82b1f0b4cf88fe5fc757b6718763a3bad5e59166.tar.xz netpbm-mirror-82b1f0b4cf88fe5fc757b6718763a3bad5e59166.zip |
Fix TRUE, FALSE redefined
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2365 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/specialty')
-rw-r--r-- | editor/specialty/pgmabel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/specialty/pgmabel.c b/editor/specialty/pgmabel.c index 4914c4be..1764c5d7 100644 --- a/editor/specialty/pgmabel.c +++ b/editor/specialty/pgmabel.c @@ -38,15 +38,15 @@ static const char* const version="$VER: pgmabel 1.009 (24 Jan 2002)"; #include <math.h> #include <stdlib.h> /* for calloc */ -#include "pgm.h" + +#include "pm_c_util.h" #include "mallocvar.h" +#include "pgm.h" #ifndef PID2 /* PI/2 (on AMIGA always defined) */ #define PID2 1.57079632679489661923 #endif -#define TRUE 1 -#define FALSE 0 /* some global variables */ static double *aldl, *ardl; /* pointer for weighting factors */ |