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 23a7f9f..e135d48 100644 --- a/libbb/bb_xlisten.c +++ b/libbb/bb_xlisten.c @@ -6,6 +6,7 @@ * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ + #include <sys/socket.h> #include "libbb.h" @@ -14,4 +15,3 @@ void bb_xlisten(int s, int backlog) if (listen(s, backlog)) bb_perror_msg_and_die("listen"); } - |