libowfat/uint64.h
2001-10-15 12:17:50 +00:00

13 lines
163 B
C

#ifndef UINT64_H
#define UINT64_H
#include <endian.h>
#if __WORDSIZE == 64
typedef unsigned long uint64;
#else
typedef unsigned long long uint64;
#endif
#endif