cygwin: convert most #ifndef __x86_64__ to #ifdef __i386__

Address the real offender

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen
2017-11-27 14:36:06 +01:00
parent bc14f1c174
commit 76f06705be
27 changed files with 140 additions and 140 deletions

View File

@@ -15,7 +15,7 @@
#define __DIRENT_VERSION 2
#ifndef __x86_64__
#ifdef __i386__
#pragma pack(push,4)
#endif
#define _DIRENT_HAVE_D_TYPE
@@ -28,7 +28,7 @@ struct dirent
__uint32_t __d_internal1;
char d_name[NAME_MAX + 1];
};
#ifndef __x86_64__
#ifdef __i386__
#pragma pack(pop)
#endif
@@ -40,7 +40,7 @@ struct dirent
#define __DIRENT_COOKIE 0xdede4242
#endif
#ifndef __x86_64__
#ifdef __i386__
#pragma pack(push,4)
#endif
typedef struct __DIR
@@ -56,7 +56,7 @@ typedef struct __DIR
void *__fh;
unsigned __flags;
} DIR;
#ifndef __x86_64__
#ifdef __i386__
#pragma pack(pop)
#endif