xv6-riscv-kernel/kernel/types.h
2025-12-10 23:17:42 +01:00

8 lines
189 B
C

#pragma once
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long u64;
typedef unsigned long uintptr_t;
typedef u64 pde_t;