diff options
author | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
commit | 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d (patch) | |
tree | 1fc53f6e80eb40d24274f2f8967d584b88c6d664 /kernel/network/arp.h | |
parent | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff) |
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/network/arp.h')
-rw-r--r-- | kernel/network/arp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/network/arp.h b/kernel/network/arp.h index 1e42dff..6e53fd9 100644 --- a/kernel/network/arp.h +++ b/kernel/network/arp.h @@ -1,5 +1,5 @@ -#include <stdint.h> +#include <typedefs.h> -int get_mac_from_ip(const uint8_t ip[4], uint8_t mac[6]); -void send_arp_request(const uint8_t ip[4]); -void handle_arp(const uint8_t *payload); +int get_mac_from_ip(const u8 ip[4], u8 mac[6]); +void send_arp_request(const u8 ip[4]); +void handle_arp(const u8 *payload); |