14 lines
195 B
C
14 lines
195 B
C
#ifndef _STDDEF_H
|
|
#define _STDDEF_H
|
|
#include <stdint.h>
|
|
|
|
#define NULL 0
|
|
|
|
typedef signed long long ptrdiff_t;
|
|
|
|
typedef int32_t wchar_t;
|
|
|
|
typedef unsigned long long size_t;
|
|
|
|
#endif /* _STDDEF_H */
|