diff options
-rw-r--r-- | libbb/bb_xbind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/bb_xbind.c b/libbb/bb_xbind.c index a1ae5d5eb..b53f8239a 100644 --- a/libbb/bb_xbind.c +++ b/libbb/bb_xbind.c | |||
@@ -6,6 +6,7 @@ | |||
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | |||
9 | #include <sys/types.h> | 10 | #include <sys/types.h> |
10 | #include <sys/socket.h> | 11 | #include <sys/socket.h> |
11 | #include "libbb.h" | 12 | #include "libbb.h" |
@@ -15,4 +16,3 @@ void bb_xbind(int sockfd, struct sockaddr *my_addr, socklen_t addrlen) | |||
15 | if (bind(sockfd, my_addr, addrlen)) | 16 | if (bind(sockfd, my_addr, addrlen)) |
16 | bb_perror_msg_and_die("bind"); | 17 | bb_perror_msg_and_die("bind"); |
17 | } | 18 | } |
18 | |||