diff options
Diffstat (limited to 'common/types.h')
-rw-r--r-- | common/types.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/common/types.h b/common/types.h index 631cd8295..437c3047a 100644 --- a/common/types.h +++ b/common/types.h @@ -96,20 +96,6 @@ # define HAVE_U32_TYPEDEF #endif -#ifndef HAVE_U64_TYPEDEF -# undef u64 /* There might be a macro with this name. */ -# if SIZEOF_UNSIGNED_INT == 8 - typedef unsigned int u64; -# define HAVE_U64_TYPEDEF -# elif SIZEOF_UNSIGNED_LONG == 8 - typedef unsigned long u64; -# define HAVE_U64_TYPEDEF -# elif __GNUC__ >= 2 || defined(__SUNPRO_C) - typedef unsigned long long u64; -# define HAVE_U64_TYPEDEF -# endif -#endif - /* Some GCC attributes. Note that we use also define some in mischelp.h, but this header and types.h are not always included. |