diff options
Diffstat (limited to 'lib/hashtab.c')
-rw-r--r-- | lib/hashtab.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/hashtab.c b/lib/hashtab.c index 4ce9961..566d7a6 100644 --- a/lib/hashtab.c +++ b/lib/hashtab.c @@ -40,6 +40,14 @@ This implements a hash table. #include "recycle.h" #endif +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef TRUE +#define TRUE !FALSE +#endif + /* sanity check -- make sure ipos, apos, and count make sense */ static void hsanity(t) htab *t; |