* fcntl.cc (fcntl): Define as export alias for fcntl64 on x86_64.

This commit is contained in:
Corinna Vinschen 2013-04-26 18:20:17 +00:00
parent 7881a70fad
commit 151f737ab0
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-04-26 Corinna Vinschen <corinna@vinschen.de>
* fcntl.cc (fcntl): Define as export alias for fcntl64 on x86_64.
2013-04-24 Corinna Vinschen <corinna@vinschen.de>
* autoload.cc (CreateSymbolicLink): Define.

View File

@ -89,6 +89,7 @@ done:
}
#ifdef __x86_64__
EXPORT_ALIAS (fcntl64, fcntl)
EXPORT_ALIAS (fcntl64, _fcntl)
#else
extern "C" int

View File

@ -5,6 +5,10 @@ What's new:
- Add support for building a 64 bit version of Cygwin on x86_64 natively.
- Add support for creating native symlinks (CYGWIN=winsymlinks:native)
- Add support for the AFS filesystem.
Bug fixes:
----------