diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-14 18:06:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-14 19:58:11 +0200 |
commit | 661bd992b0bb0efc5f5871e48a09019639ff073c (patch) | |
tree | ed28bfc3d612b6cd883d931a5964334723ce8fa0 /Userland/Utilities/arp.cpp | |
parent | ff50122dc514717e4b5d8924e21d3eaef59ca402 (diff) | |
download | serenity-661bd992b0bb0efc5f5871e48a09019639ff073c.zip |
Kernel+LibC: Share definitions for net/{if,if_arp,route}.h
Diffstat (limited to 'Userland/Utilities/arp.cpp')
-rw-r--r-- | Userland/Utilities/arp.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/arp.cpp b/Userland/Utilities/arp.cpp index 015f1853d4..970174c090 100644 --- a/Userland/Utilities/arp.cpp +++ b/Userland/Utilities/arp.cpp @@ -13,6 +13,7 @@ #include <AK/Types.h> #include <LibCore/ArgsParser.h> #include <LibCore/File.h> +#include <net/if_arp.h> #include <net/route.h> #include <netinet/in.h> #include <sys/ioctl.h> |