summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2024-03-26 05:46:14 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2024-03-26 05:46:14 +0000
commit8d78144ee785dc0958515734cd5e49fe6e07d494 (patch)
treedf753e9b8a405101c84fa86ea89a273d02a2f547
parent72f7454763c5cb19e0c2ed833d6065561915a2e7 (diff)
Include stdint.h for uintptr_t.
-rw-r--r--lib/libcrypto/md5/md5.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/md5/md5.c b/lib/libcrypto/md5/md5.c
index cb1a9a3a09c..ab53bf548fd 100644
--- a/lib/libcrypto/md5/md5.c
+++ b/lib/libcrypto/md5/md5.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: md5.c,v 1.19 2024/03/26 05:21:35 jsing Exp $ */
+/* $OpenBSD: md5.c,v 1.20 2024/03/26 05:46:13 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>