af_packet: Use cstdint instead of stdint.h

This commit is contained in:
Tim Wojtulewicz 2023-04-25 08:45:03 -07:00 committed by Tim Wojtulewicz
parent ba15e3e3b2
commit c55fad5094

View file

@ -5,7 +5,7 @@
extern "C" { extern "C" {
#include <linux/if_packet.h> // AF_PACKET, etc. #include <linux/if_packet.h> // AF_PACKET, etc.
} }
#include <stdint.h> #include <cstdint>
#include <stdexcept> #include <stdexcept>
#include <string> #include <string>