diff options
author | Egor Duda <deo@logos-m.ru> | 2001-04-25 16:18:43 +0000 |
---|---|---|
committer | Egor Duda <deo@logos-m.ru> | 2001-04-25 16:18:43 +0000 |
commit | 86699e1555e3f8438e23530f1a0b49ff87330686 (patch) | |
tree | cdf01131fdc5b7723e6dcc2e20ad018e6fe29c46 | |
parent | edc4bfd9da3792082055413387974f4224cb8120 (diff) | |
download | newlib-86699e1555e3f8438e23530f1a0b49ff87330686.zip newlib-86699e1555e3f8438e23530f1a0b49ff87330686.tar.gz newlib-86699e1555e3f8438e23530f1a0b49ff87330686.tar.bz2 |
* cygwin.din: Export asctime_r, ctime_r, gmtime_r, localtime_r
* include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 39
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/cygwin.din | 8 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 |
3 files changed, 15 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 6d0c123..c5963fd 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2001-04-25 Egor Duda <deo@logos-m.ru> + + * cygwin.din: Export asctime_r, ctime_r, gmtime_r, localtime_r + * include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 39 + Wed Apr 25 10:57:36 2001 Christopher Faylor <cgf@cygnus.com> * include/cygwin/version.h: Bump minor version number. diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index b2ca79d..a3e8127 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -32,6 +32,8 @@ alphasort _alphasort = alphasort asctime _asctime = asctime +asctime_r +_asctime_r = asctime_r asin _asin = asin asinf @@ -119,6 +121,8 @@ creat _creat = creat ctime _ctime = ctime +ctime_r +_ctime_r = ctime_r cwait _cwait = cwait difftime @@ -366,6 +370,8 @@ globfree _globfree = globfree gmtime _gmtime = gmtime +gmtime_r +_gmtime_r = gmtime_r h_errno DATA hypot _hypot = hypot @@ -454,6 +460,8 @@ localeconv _localeconv = localeconv localtime _localtime = localtime +localtime_r +_localtime_r = localtime_r log _log = log log10 diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 408ea28..d576b08 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -132,10 +132,11 @@ details. */ 36: Added _cygwin_S_IEXEC, et al 37: [f]pathconv support _PC_POSIX_PERMISSIONS and _PC_POSIX_SECURITY 38: vscanf, vscanf_r, and random pthread functions + 39: asctime_r, ctime_r, gmtime_r, localtime_r */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 38 +#define CYGWIN_VERSION_API_MINOR 39 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible |