=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/patch/common.h,v retrieving revision 1.21 retrieving revision 1.22 diff -c -r1.21 -r1.22 *** src/usr.bin/patch/common.h 2003/07/31 14:10:21 1.21 --- src/usr.bin/patch/common.h 2003/08/01 20:30:48 1.22 *************** *** 1,12 **** ! /* $OpenBSD: common.h,v 1.21 2003/07/31 14:10:21 otto Exp $ */ #define DEBUGGING /* constants */ - #define TRUE 1 - #define FALSE 0 - #define MAXHUNKSIZE 100000 /* is this enough lines? */ #define INITHUNKMAX 125 /* initial dynamic allocation size */ #define MAXLINELEN 8192 --- 1,11 ---- ! /* $OpenBSD: common.h,v 1.22 2003/08/01 20:30:48 otto Exp $ */ + #include + #define DEBUGGING /* constants */ #define MAXHUNKSIZE 100000 /* is this enough lines? */ #define INITHUNKMAX 125 /* initial dynamic allocation size */ #define MAXLINELEN 8192 *************** *** 32,38 **** /* typedefs */ - typedef char bool; typedef long LINENUM; /* must be signed */ /* globals */ --- 31,36 ----