diff options
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: hash.c,v 1.11 2004/01/29 04:40:02 reinelt Exp $ +/* $Id: hash.c,v 1.12 2004/01/30 20:57:56 reinelt Exp $ * * hashes (associative arrays) * @@ -23,6 +23,10 @@ * * * $Log: hash.c,v $ + * Revision 1.12 2004/01/30 20:57:56 reinelt + * HD44780 patch from Martin Hejl + * dmalloc integrated + * * Revision 1.11 2004/01/29 04:40:02 reinelt * every .c file includes "config.h" now * @@ -87,6 +91,10 @@ #include "debug.h" #include "hash.h" +#ifdef WITH_DMALLOC +#include <dmalloc.h> +#endif + #define DELTA_SLOTS 64 |