mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-02 05:25:19 -08:00
11 lines
207 B
C
11 lines
207 B
C
#ifndef CLASSICOS_KLIBC_STDDEF_H
|
|
#define CLASSICOS_KLIBC_STDDEF_H
|
|
|
|
typedef __SIZE_TYPE__ size_t;
|
|
typedef __PTRDIFF_TYPE__ ptrdiff_t;
|
|
|
|
#undef NULL
|
|
#define NULL ((void*)0)
|
|
|
|
#endif // CLASSICOS_KLIBC_STDDEF_H
|