diff options
author | Werner Koch <[email protected]> | 2014-01-09 18:14:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-01-17 10:11:43 +0000 |
commit | 362a30d8c2f529cd44687066f9c33cab7b43bedc (patch) | |
tree | 714fe7d9487d56fc950a9e37c70602bc251dfaa3 /common/types.h | |
parent | agent: Not remove SSH socket when already running. (diff) | |
download | gnupg-362a30d8c2f529cd44687066f9c33cab7b43bedc.tar.gz gnupg-362a30d8c2f529cd44687066f9c33cab7b43bedc.zip |
Remove unused u64 type definitions.
* configure.ac: Remove check for uint64 and UINT64_C.
* include/types.h: Remove u64 stuff.
* common/types.h: Ditto.
--
There have been relicts from GnuPG-1.
Signed-off-by: Werner Koch <[email protected]>
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. |