diff options
author | tb <> | 2021-10-22 10:22:15 +0000 |
---|---|---|
committer | tb <> | 2021-10-22 10:22:15 +0000 |
commit | 953d242de1254751747e7b9629babb906fe23ba2 (patch) | |
tree | d80a4495eb79baa60f0900193bff35b9af9a74a0 | |
parent | f7ccc1b14a02baed54e9b735b084d0ccac1eb9ce (diff) | |
download | openbsd-953d242de1254751747e7b9629babb906fe23ba2.tar.gz openbsd-953d242de1254751747e7b9629babb906fe23ba2.tar.bz2 openbsd-953d242de1254751747e7b9629babb906fe23ba2.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
-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 | ||