blob: 6ec3e04af7be03a58d29f9e3016006498ff5302c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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)
*/
|