* fcntl.cc (fcntl): Define as export alias for fcntl64 on x86_64.
This commit is contained in:
parent
7881a70fad
commit
151f737ab0
|
@ -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.
|
||||
|
|
|
@ -89,6 +89,7 @@ done:
|
|||
}
|
||||
|
||||
#ifdef __x86_64__
|
||||
EXPORT_ALIAS (fcntl64, fcntl)
|
||||
EXPORT_ALIAS (fcntl64, _fcntl)
|
||||
#else
|
||||
extern "C" int
|
||||
|
|
|
@ -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:
|
||||
----------
|
||||
|
||||
|
|
Loading…
Reference in New Issue