diff options
| author | Simon Glass <[email protected]> | 2025-05-15 17:31:48 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-05-29 08:30:25 -0600 |
| commit | 85b013e3f43ff4fa50ced6a23ba336813eaf9320 (patch) | |
| tree | 8f7b8beeb07be2fe205519eb6a39cb62bf4d0bf5 /net | |
| parent | 22d4e22a3d2e8a95c37c0635701daaee8d5a5c6b (diff) | |
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 <[email protected]>
Diffstat (limited to 'net')
| -rw-r--r-- | net/pcap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/pcap.c b/net/pcap.c index c959e3e4e51..d1d6f705cda 100644 --- a/net/pcap.c +++ b/net/pcap.c @@ -3,6 +3,7 @@ * Copyright 2019 Ramon Fried <[email protected]> */ +#include <env.h> #include <net.h> #include <net/pcap.h> #include <time.h> |
