mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 20:01:27 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
19 lines
207 B
C
19 lines
207 B
C
#ifndef _STDDEF_H_
|
|
#define _STDDEF_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef unsigned long size_t;
|
|
typedef long ptrdiff_t;
|
|
|
|
#ifndef NULL
|
|
#define NULL (0)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |