stddef.h: size_t

This commit is contained in:
Imbus 2025-09-04 05:00:02 +02:00
parent c82f60c685
commit 4ee23cd145

View file

@ -1,8 +1,13 @@
#ifndef STDDEF_H
#define STDDEF_H
#include <stdint.h>
#ifndef NULL
#define NULL ((void *)0)
#endif
#ifndef size_t
#define size_t uint64_t
#endif
#endif // STDDEF_H