diff options
-rw-r--r-- | libbb/bb_xlisten.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/bb_xlisten.c b/libbb/bb_xlisten.c index 23a7f9fd7..e135d4836 100644 --- a/libbb/bb_xlisten.c +++ b/libbb/bb_xlisten.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/socket.h> | 10 | #include <sys/socket.h> |
10 | #include "libbb.h" | 11 | #include "libbb.h" |
11 | 12 | ||
@@ -14,4 +15,3 @@ void bb_xlisten(int s, int backlog) | |||
14 | if (listen(s, backlog)) | 15 | if (listen(s, backlog)) |
15 | bb_perror_msg_and_die("listen"); | 16 | bb_perror_msg_and_die("listen"); |
16 | } | 17 | } |
17 | |||