summaryrefslogtreecommitdiffstats
path: root/md5.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-05-29 20:22:16 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-05-29 20:22:16 +0000
commitd4eef53ca2c3f215b8457f71cb3b597d2cbf78b4 (patch)
tree2871a9663ba69f44f7f436a9c94bcceb13ef5d0c /md5.h
parent535ffbdf571412965d70388d9ee7c1d488254dea (diff)
More type-determination fixes from Lars Hecking.
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/md5.h b/md5.h
index b6c5f1d0..f8254323 100644
--- a/md5.h
+++ b/md5.h
@@ -28,10 +28,13 @@ documentation and/or software.
#include "config.h"
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
+#include <sys/types.h>
+#if HAVE_INTTYPES_H
+# include <inttypes.h>
#else
-# include <sys/types.h>
+# if HAVE_STDINT_H
+# include <stdint.h>
+# endif
#endif
/* POINTER defines a generic pointer type */