mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
distributed version 0.1.0
This commit is contained in:
parent
b83f687379
commit
6e0fd3df65
5 changed files with 19 additions and 13 deletions
|
@ -44,9 +44,9 @@
|
|||
|
||||
#ifndef HAVE_U16_TYPEDEF
|
||||
#undef u16 /* maybe there is a macro with this name */
|
||||
#if SIZEOF_UNSIGNED_INT == 16
|
||||
#if SIZEOF_UNSIGNED_INT == 2
|
||||
typedef unsigned int u16;
|
||||
#elif SIZEOF_UNSIGNED_SHORT == 16
|
||||
#elif SIZEOF_UNSIGNED_SHORT == 2
|
||||
typedef unsigned short u16;
|
||||
#else
|
||||
#error no typedef for u16
|
||||
|
@ -56,9 +56,9 @@
|
|||
|
||||
#ifndef HAVE_U32_TYPEDEF
|
||||
#undef u32 /* maybe there is a macro with this name */
|
||||
#if SIZEOF_UNSIGNED_INT == 32
|
||||
#if SIZEOF_UNSIGNED_INT == 4
|
||||
typedef unsigned long u32;
|
||||
#elif SIZEOF_UNSIGNED_LONG == 32
|
||||
#elif SIZEOF_UNSIGNED_LONG == 4
|
||||
typedef unsigned int u32;
|
||||
#else
|
||||
#error no typedef for u32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue