diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-12 17:29:37 +0100 |
commit | ef1e5db1d063f55e57b1d7623ea7154583fc95ad (patch) | |
tree | fb92514e07f4017cb899258137c817c07da9d5c5 /Userland/Utilities/test-bindtodevice.cpp | |
parent | 423ed5339651a2646c64ee4fd7b3b32bb7f8c942 (diff) | |
download | serenity-ef1e5db1d063f55e57b1d7623ea7154583fc95ad.zip |
Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)
Good-bye LogStream. Long live AK::Format!
Diffstat (limited to 'Userland/Utilities/test-bindtodevice.cpp')
-rw-r--r-- | Userland/Utilities/test-bindtodevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/test-bindtodevice.cpp b/Userland/Utilities/test-bindtodevice.cpp index d96d1e6b29..d9c4f1c24c 100644 --- a/Userland/Utilities/test-bindtodevice.cpp +++ b/Userland/Utilities/test-bindtodevice.cpp @@ -29,9 +29,9 @@ #include <net/if.h> #include <netinet/in.h> #include <stdio.h> -#include <stdlib.h> #include <string.h> #include <sys/socket.h> +#include <unistd.h> static void test_invalid(int); static void test_no_route(int); |