diff options
author | jsing <> | 2024-03-26 05:46:13 +0000 |
---|---|---|
committer | jsing <> | 2024-03-26 05:46:13 +0000 |
commit | ec5504b95ba516000ba7f5e6b3e049bb7bf65cfe (patch) | |
tree | a9d7995571b8894232325c609188cd750c7d51f1 /src | |
parent | c02ae62bf6379d7b7e2d966c8670cdda65d6b1be (diff) | |
download | openbsd-ec5504b95ba516000ba7f5e6b3e049bb7bf65cfe.tar.gz openbsd-ec5504b95ba516000ba7f5e6b3e049bb7bf65cfe.tar.bz2 openbsd-ec5504b95ba516000ba7f5e6b3e049bb7bf65cfe.zip |
Include stdint.h for uintptr_t.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/md5/md5.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/md5/md5.c b/src/lib/libcrypto/md5/md5.c index cb1a9a3a09..ab53bf548f 100644 --- a/src/lib/libcrypto/md5/md5.c +++ b/src/lib/libcrypto/md5/md5.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md5.c,v 1.19 2024/03/26 05:21:35 jsing Exp $ */ | 1 | /* $OpenBSD: md5.c,v 1.20 2024/03/26 05:46:13 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -57,6 +57,7 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include <stdint.h> | ||
60 | #include <stdlib.h> | 61 | #include <stdlib.h> |
61 | #include <string.h> | 62 | #include <string.h> |
62 | 63 | ||