ciabatta/inc/stddef.h

22 lines
454 B
C
Raw Normal View History

#pragma once
2022-08-04 09:00:01 +00:00
#if !defined(NULL)
#define NULL ((void *)0)
#endif
2022-08-04 09:00:01 +00:00
#define offsetof(st, m) ((size_t)((char *)&((st *)0)->m - (char *)0))
#if defined(_WIN32)
typedef long long ptrdiff_t;
typedef unsigned long long size_t;
typedef unsigned long long max_align_t;
typedef unsigned short wchar_t;
#else
typedef long ptrdiff_t;
typedef unsigned long size_t;
typedef unsigned long max_align_t;
typedef int wchar_t;
#endif