mirror of
https://github.com/zeldaret/tp
synced 2026-06-09 04:40:05 -04:00
e1114ebcf9
* clean up MSL_C files according to prime decomp * remove asm
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 |