commit | a47436d3520cf0bea30353634445c795c62fe127 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu May 15 17:31:48 2025 -0600 |
committer | Tom Rini <trini@konsulko.com> | Thu May 29 08:30:25 2025 -0600 |
tree | 8f7b8beeb07be2fe205519eb6a39cb62bf4d0bf5 | |
parent | a86ea1c1ddaf1039d545222b2c98fbf5739cf697 [diff] [blame] |
net: Include env.h in pcap.c This file uses the environment but does not include the header file. Update it. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/net/pcap.c b/net/pcap.c index c959e3e..d1d6f70 100644 --- a/net/pcap.c +++ b/net/pcap.c
@@ -3,6 +3,7 @@ * Copyright 2019 Ramon Fried <rfried.dev@gmail.com> */ +#include <env.h> #include <net.h> #include <net/pcap.h> #include <time.h>