13 lines
167 B
C
13 lines
167 B
C
#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
|