diff options
author | Christopher Faylor <me@cgf.cx> | 2002-04-09 23:47:26 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-04-09 23:47:26 +0000 |
commit | dbe67a81032765d702b73691d11406984d47f25a (patch) | |
tree | f350b0362b83dbe5746d8310ab437f5219f18379 | |
parent | 4e4871b389bc938d24e0c892e52182a81f2a1c7d (diff) | |
download | cygnal-dbe67a81032765d702b73691d11406984d47f25a.tar.gz cygnal-dbe67a81032765d702b73691d11406984d47f25a.tar.bz2 cygnal-dbe67a81032765d702b73691d11406984d47f25a.zip |
* cygwin.din: Add strptime.
* include/cygwin/version.h: Increment API version number.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/cygwin.din | 2 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 359cf71e1..45925f179 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2002-04-09 Mark Bradshaw <bradshaw@staff.crosswalk.com> + + * cygwin.din: Add strptime. + * include/cygwin/version.h: Increment API version number. + 2002-04-09 Corinna Vinschen <corinna@vinschen.de> * fork.cc (fork_child): Call fixup_mmaps_after_fork() somewhat earlier. diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index e2bf1fa43..8de1bdb0c 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -967,6 +967,8 @@ pclose _pclose = pclose strftime _strftime = strftime +strptime +_strptime = strptime setgrent _setgrent = setgrent cuserid diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 5bf5663dc..08860d74c 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -149,12 +149,13 @@ details. */ 49: Export setutent, endutent, utmpname, getutent, getutid, getutline. 50: Export fnmatch. 51: Export recvmsg, sendmsg. + 52: Export strptime */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 51 +#define CYGWIN_VERSION_API_MINOR 52 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible |