14 lines
186 B
C
14 lines
186 B
C
![]() |
#ifndef UINT64_H
|
||
|
#define UINT64_H
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
#include <limits.h>
|
||
|
|
||
|
#if __WORDSIZE == 64
|
||
|
typedef unsigned long uint64;
|
||
|
#else
|
||
|
typedef unsigned long long uint64;
|
||
|
#endif
|
||
|
|
||
|
#endif
|