libowfat/uint64.h

14 lines
186 B
C
Raw Normal View History

2001-02-02 17:54:47 +00:00
#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