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/bytes.h | |
parent | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff) |
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/network/bytes.h')
-rw-r--r-- | kernel/network/bytes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/network/bytes.h b/kernel/network/bytes.h index c291589..b71b9a4 100644 --- a/kernel/network/bytes.h +++ b/kernel/network/bytes.h @@ -1,5 +1,5 @@ -#include <stdint.h> +#include <typedefs.h> -uint16_t ntohs(uint16_t net); -uint16_t htons(uint16_t net); -uint32_t htonl(uint32_t net); +u16 ntohs(u16 net); +u16 htons(u16 net); +u32 htonl(u32 net); |