diff options
| author | tb <> | 2021-10-22 10:22:15 +0000 |
|---|---|---|
| committer | tb <> | 2021-10-22 10:22:15 +0000 |
| commit | 8ec905c6206db791419e84ccc5ca015e1f5732ad (patch) | |
| tree | d80a4495eb79baa60f0900193bff35b9af9a74a0 /src/lib/libc | |
| parent | a41d7d8529c6d3afa6ed78521c187d8ec1126cc3 (diff) | |
| download | openbsd-8ec905c6206db791419e84ccc5ca015e1f5732ad.tar.gz openbsd-8ec905c6206db791419e84ccc5ca015e1f5732ad.tar.bz2 openbsd-8ec905c6206db791419e84ccc5ca015e1f5732ad.zip | |
Put back sys/types.h and sys/socket.h. The latter was unintentionally
removed and the former is still needed, as pointed out by kettenis
Diffstat (limited to 'src/lib/libc')
| -rw-r--r-- | src/lib/libc/net/base64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libc/net/base64.c b/src/lib/libc/net/base64.c index 7bfcb214d9..5b150d3881 100644 --- a/src/lib/libc/net/base64.c +++ b/src/lib/libc/net/base64.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: base64.c,v 1.11 2021/10/22 09:51:54 tb Exp $ */ | 1 | /* $OpenBSD: base64.c,v 1.12 2021/10/22 10:22:15 tb Exp $ */ |
| 2 | 2 | ||
| 3 | /* | 3 | /* |
| 4 | * Copyright (c) 1996 by Internet Software Consortium. | 4 | * Copyright (c) 1996 by Internet Software Consortium. |
| @@ -42,6 +42,8 @@ | |||
| 42 | * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. | 42 | * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. |
| 43 | */ | 43 | */ |
| 44 | 44 | ||
| 45 | #include <sys/types.h> | ||
| 46 | #include <sys/socket.h> | ||
| 45 | #include <netinet/in.h> | 47 | #include <netinet/in.h> |
| 46 | #include <arpa/inet.h> | 48 | #include <arpa/inet.h> |
| 47 | 49 | ||
