summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2015-12-14 00:37:34 +0100
committerGuillem Jover <guillem@hadrons.org>2015-12-14 00:58:59 +0100
commit2c77ad593ca235e95bbc59de3b36fb9d69881529 (patch)
treed3823ca89757c09eda363681c5ee9daa37970785
parent48ac79b1883981f5135b5b9c76ca268e6cbe65b2 (diff)
Add missing include to <md5.h>
The header was not self-contained, it was missing definitions for some types included in <sys/types.h>.
-rw-r--r--include/bsd/md5.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bsd/md5.h b/include/bsd/md5.h
index 56c3cd6..9a75fad 100644
--- a/include/bsd/md5.h
+++ b/include/bsd/md5.h
@@ -28,6 +28,7 @@ typedef struct MD5Context {
} MD5_CTX;
#include <sys/cdefs.h>
+#include <sys/types.h>
__BEGIN_DECLS
void MD5Init(MD5_CTX *);