diff options
author | Christopher Faylor <me@cgf.cx> | 2002-05-13 19:53:46 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-05-13 19:53:46 +0000 |
commit | feb7f1a97ddfdf4499bf78afb936e4d2f9be97bd (patch) | |
tree | 97a6c090b675ef5934f24eeff0697b07c4769e68 | |
parent | 024739eb2b2cde8d2e8c6509f90f5dad196dbd16 (diff) | |
download | cygnal-feb7f1a97ddfdf4499bf78afb936e4d2f9be97bd.tar.gz cygnal-feb7f1a97ddfdf4499bf78afb936e4d2f9be97bd.tar.bz2 cygnal-feb7f1a97ddfdf4499bf78afb936e4d2f9be97bd.zip |
* cygwin.din: Add strlcat and strlcpy.
* include/cygwin/version.h: Increment API minor version number.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/cygwin.din | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 |
3 files changed, 11 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 2423c847d..98e197985 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2002-05-13 Mark Bradshaw <bradshaw@staff.crosswalk.com> + + * cygwin.din: Add strlcat and strlcpy. + * include/cygwin/version.h: Increment API minor version number. + 2002-05-09 Pierre Humblet <pierre.humblet@ieee.org> * shared.cc (__sec_user): Split into sec_acl() and call orig_sid(). diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index 8de1bdb0c..165c26f03 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -967,6 +967,10 @@ pclose _pclose = pclose strftime _strftime = strftime +strlcat +_strlcat = strlcat +strlcpy +_strlcpy = strlcpy strptime _strptime = strptime setgrent diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 08860d74c..6ab596e09 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -150,12 +150,13 @@ details. */ 50: Export fnmatch. 51: Export recvmsg, sendmsg. 52: Export strptime + 53: Export strlcat, strlcpy. */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 52 +#define CYGWIN_VERSION_API_MINOR 53 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible |