blob: 5435d0065e73d76969988c4a5660e69bb1a3e8da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stddef.h>
#ifdef __LLP64__
# if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199909L
typedef unsigned __int64 size_t;
# else
typedef unsigned long long int size_t;
# endif
#else
typedef unsigned long int size_t;
#endif
/** memory size type **/
/***
is an unsigned integer type that is the result of using the
OPERATOR(sizeof) operator.
***/
/*
TYPEDEF(unsigned integer)
*/
/*
STDC(1)
*/
|