Files
Upsilon/liba/include/stddef.h
2018-10-19 10:59:17 +02:00

13 lines
205 B
C

#ifndef LIBA_STDDEF_H
#define LIBA_STDDEF_H
#define NULL 0
typedef int ssize_t;
typedef unsigned int size_t;
typedef int ptrdiff_t;
#define offsetof(type, field) __builtin_offsetof(type, field)
#endif