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

@@ -79,10 +79,7 @@ fcntl64 (int fd, int cmd, ...)
return res;
}
#ifdef __x86_64__
EXPORT_ALIAS (fcntl64, fcntl)
EXPORT_ALIAS (fcntl64, _fcntl)
#else
#ifdef __i386__
extern "C" int
_fcntl (int fd, int cmd, ...)
{
@@ -121,4 +118,7 @@ _fcntl (int fd, int cmd, ...)
__endtry
return -1;
}
#else
EXPORT_ALIAS (fcntl64, fcntl)
EXPORT_ALIAS (fcntl64, _fcntl)
#endif