* cygwin.din: Add strlcat and strlcpy.
* include/cygwin/version.h: Increment API minor version number.
This commit is contained in:
parent
024739eb2b
commit
feb7f1a97d
|
@ -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>
|
2002-05-09 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
* shared.cc (__sec_user): Split into sec_acl() and call orig_sid().
|
* shared.cc (__sec_user): Split into sec_acl() and call orig_sid().
|
||||||
|
|
|
@ -967,6 +967,10 @@ pclose
|
||||||
_pclose = pclose
|
_pclose = pclose
|
||||||
strftime
|
strftime
|
||||||
_strftime = strftime
|
_strftime = strftime
|
||||||
|
strlcat
|
||||||
|
_strlcat = strlcat
|
||||||
|
strlcpy
|
||||||
|
_strlcpy = strlcpy
|
||||||
strptime
|
strptime
|
||||||
_strptime = strptime
|
_strptime = strptime
|
||||||
setgrent
|
setgrent
|
||||||
|
|
|
@ -150,12 +150,13 @@ details. */
|
||||||
50: Export fnmatch.
|
50: Export fnmatch.
|
||||||
51: Export recvmsg, sendmsg.
|
51: Export recvmsg, sendmsg.
|
||||||
52: Export strptime
|
52: Export strptime
|
||||||
|
53: Export strlcat, strlcpy.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_API_MAJOR 0
|
#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
|
/* There is also a compatibity version number associated with the
|
||||||
shared memory regions. It is incremented when incompatible
|
shared memory regions. It is incremented when incompatible
|
||||||
|
|
Loading…
Reference in New Issue