mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
12 lines
182 B
C
12 lines
182 B
C
#ifndef LIBA_STDDEF_H
|
|
#define LIBA_STDDEF_H
|
|
|
|
#define NULL 0
|
|
|
|
typedef int ssize_t;
|
|
typedef unsigned int size_t;
|
|
|
|
#define offsetof(type, field) __builtin_offsetof(type, field)
|
|
|
|
#endif
|