summaryrefslogtreecommitdiff
path: root/src/headers/uint64-ulong64
blob: f01c6685a2e7f21fe412ee8906b58251df4b09ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
typedef unsigned long uint64_t ;
typedef long int64_t ;

#ifndef INT64_MIN
# define INT64_MIN (-1-0x7fffffffffffffffl)
#endif

#ifndef INT64_MAX 
# define INT64_MAX 0x7fffffffffffffffl
#endif

#ifndef UINT64_MAX
# define UINT64_MAX 0xfffffffffffffffful
#endif