mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
10 lines
194 B
C
10 lines
194 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define NULL ((void *) 0)
|
|
|
|
typedef __PTRDIFF_TYPE__ ptrdiff_t;
|
|
typedef uint32_t size_t; // FIXME __SIZE_TYPE__ wrong on macOS?
|
|
typedef __WCHAR_TYPE__ wchar_t;
|