Correcting header guards across the kernel

This commit is contained in:
Imbus 2025-09-02 03:27:36 +02:00
parent 8d126a6dfd
commit 4ed3650089
12 changed files with 50 additions and 59 deletions

View file

@ -1,4 +1,5 @@
#pragma once
#ifndef STDINT_H
#define STDINT_H
typedef unsigned char u8;
typedef unsigned short u16;
@ -27,3 +28,5 @@ typedef uint64_t uintptr_t;
#define UINT16_MAX (65535)
#define UINT32_MAX (4294967295U)
#define UINT64_MAX (__UINT64_C(18446744073709551615))
#endif // STDINT_H