diff options
author | miod <> | 2015-10-30 15:45:57 +0000 |
---|---|---|
committer | miod <> | 2015-10-30 15:45:57 +0000 |
commit | 857a26cd73249023ce1882995ef8e654cd48f0e9 (patch) | |
tree | 84a9b3b6e525872d6da1bb745e197b557604917e /src/regress/lib/libcrypto | |
parent | 7ae41bf6bae5fce9138ee2a54bc12996051b19fd (diff) | |
download | openbsd-857a26cd73249023ce1882995ef8e654cd48f0e9.tar.gz openbsd-857a26cd73249023ce1882995ef8e654cd48f0e9.tar.bz2 openbsd-857a26cd73249023ce1882995ef8e654cd48f0e9.zip |
Pull in <sys/types.h> to get ssize_t or <stdint.h> to get uint32_t, instead of
relying upon previously included headers to do this, to enhance portability;
from Pascal Cuoq, libressl github pull request #52
Diffstat (limited to 'src/regress/lib/libcrypto')
-rw-r--r-- | src/regress/lib/libcrypto/base64/base64test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/base64/base64test.c b/src/regress/lib/libcrypto/base64/base64test.c index 17dcfaf302..ed494b6d40 100644 --- a/src/regress/lib/libcrypto/base64/base64test.c +++ b/src/regress/lib/libcrypto/base64/base64test.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <err.h> | 20 | #include <err.h> |
21 | #include <stdio.h> | 21 | #include <stdio.h> |
22 | #include <string.h> | 22 | #include <string.h> |
23 | #include <sys/types.h> | ||
23 | 24 | ||
24 | #define BUF_SIZE 128 | 25 | #define BUF_SIZE 128 |
25 | 26 | ||