From 0c5bd57698c9fe44b7d167484d87383cc7cb3363 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Tue, 9 Apr 2002 20:05:15 +0000 Subject: Added more include logic code to be more portable. --- src/hashmap.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/hashmap.c b/src/hashmap.c index f4553fd..74af7a9 100644 --- a/src/hashmap.c +++ b/src/hashmap.c @@ -1,4 +1,4 @@ -/* $Id: hashmap.c,v 1.2 2002-04-09 16:28:13 rjkaes Exp $ +/* $Id: hashmap.c,v 1.3 2002-04-09 20:05:15 rjkaes Exp $ * * A hashmap implementation. The keys are case-insensitive NULL terminated * strings, and the data is arbitrary lumps of data. Copies of both the @@ -30,7 +30,12 @@ #endif #include -#include +#if defined(HAVE_STDINT_H) +# include +#endif +#if defined(HAVE_INTTYPES_H) +# include +#endif #if defined(HAVE_CTYPE_H) # include -- cgit v1.2.3