ciabatta/include/stddef.h

12 lines
136 B
C
Raw Normal View History

2023-08-02 09:05:26 +00:00
#pragma once
2023-08-26 07:39:40 +00:00
#include <cia/def.h>
2023-08-02 09:05:26 +00:00
typedef u64 size_t;
2023-08-26 11:35:18 +00:00
typedef i64 ptrdiff_t;
2023-08-02 09:05:26 +00:00
#if !defined(NULL)
#define NULL ((void *)0)
#endif