summaryrefslogtreecommitdiff
path: root/hashtab.h
diff options
context:
space:
mode:
Diffstat (limited to 'hashtab.h')
-rw-r--r--hashtab.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/hashtab.h b/hashtab.h
index 2f8b22c..45ad923 100644
--- a/hashtab.h
+++ b/hashtab.h
@@ -31,7 +31,11 @@ This implements a hash table.
#ifndef HASHTAB
#define HASHTAB
+#ifdef WIN32
+#include "stdint.h"
+#else
#include <stdint.h>
+#endif
#include <stdlib.h>
/* PRIVATE TYPES AND DEFINITIONS */