Lely core libraries 2.3.4
stddef.h
Go to the documentation of this file.
1
22#ifndef LELY_LIBC_STDDEF_H_
23#define LELY_LIBC_STDDEF_H_
24
25#include <lely/features.h>
26
27#include <stddef.h>
28
29#if !(__STDC_VERSION__ >= 201112L) && !(__cplusplus >= 201103L)
34typedef union {
35 long long _ll;
36 long double _ld;
37 void *_ptr;
38 int (*_fptr)(void);
40#endif
41
42#endif // !LELY_LIBC_STDDEF_H_
This header file is part of the Lely libraries; it contains the compiler feature definitions.
This header file is part of the C11 and POSIX compatibility library; it includes <stddef....
An object type whose alignment is as great as is supported by the implementation in all contexts.
Definition: stddef.h:34