1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-03 12:11:33 +01:00

* types.h: Revert previous change. This sort of thing is better done in

autoconf.
This commit is contained in:
David Shaw 2003-09-04 02:50:36 +00:00
parent 8220c4356b
commit 772ff76486
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-09-03 David Shaw <dshaw@jabberwocky.com>
* types.h: Revert previous change. This sort of thing is better
done in autoconf.
2003-09-02 David Shaw <dshaw@jabberwocky.com>
* types.h: Non-POSIX environments may have uint64_t but not

View File

@ -101,7 +101,7 @@ typedef unsigned long u32;
*/
#ifndef HAVE_U64_TYPEDEF
#undef u64 /* maybe there is a macro with this name */
#if SIZEOF_UINT64_T == 8 && defined(UINT64_C)
#if SIZEOF_UINT64_T == 8
typedef uint64_t u64;
#define U64_C(c) (UINT64_C(c))
#define HAVE_U64_TYPEDEF