* cygwin.din: Export fseeko() and ftello().
* include/cygwin/version.h: Bump API minor version.
This commit is contained in:
parent
f7618386af
commit
0be1147408
|
@ -1,3 +1,8 @@
|
|||
2002-11-07 Jason Tishler <jason@tishler.net>
|
||||
|
||||
* cygwin.din: Export fseeko() and ftello().
|
||||
* include/cygwin/version.h: Bump API minor version.
|
||||
|
||||
2002-11-06 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* fhandler_console.cc (keytable[]): Revert previous change. It would
|
||||
|
|
|
@ -310,6 +310,8 @@ _fscanf_r
|
|||
fscanf_r = _fscanf_r
|
||||
fseek
|
||||
_fseek = fseek
|
||||
fseeko
|
||||
_fseeko = fseeko
|
||||
fsetpos
|
||||
_fsetpos = fsetpos
|
||||
_fstat
|
||||
|
@ -325,6 +327,8 @@ _f_tanf
|
|||
__f_tanf = _f_tanf
|
||||
ftell
|
||||
_ftell = ftell
|
||||
ftello
|
||||
_ftello = ftello
|
||||
ftime
|
||||
_ftime = ftime
|
||||
ftruncate
|
||||
|
|
|
@ -161,12 +161,13 @@ details. */
|
|||
putchar_unlocked
|
||||
62: Erroneously bumped.
|
||||
63: Export pututline.
|
||||
64: Export fseeko, ftello
|
||||
*/
|
||||
|
||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||
|
||||
#define CYGWIN_VERSION_API_MAJOR 0
|
||||
#define CYGWIN_VERSION_API_MINOR 63
|
||||
#define CYGWIN_VERSION_API_MINOR 64
|
||||
|
||||
/* There is also a compatibity version number associated with the
|
||||
shared memory regions. It is incremented when incompatible
|
||||
|
|
Loading…
Reference in New Issue