diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-13 19:33:01 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2002-05-13 19:33:01 +0000 |
commit | 7d2ce8983da38c91f3fb6a3cbf64d50d04282f82 (patch) | |
tree | 07141ee4e661725ab6035e52b40ed5dfc5e50091 /newlib/libc/string/Makefile.am | |
parent | 043bc3e1eea5042ef269f4f2b6aa6cb760b23fcd (diff) | |
download | cygnal-7d2ce8983da38c91f3fb6a3cbf64d50d04282f82.tar.gz cygnal-7d2ce8983da38c91f3fb6a3cbf64d50d04282f82.tar.bz2 cygnal-7d2ce8983da38c91f3fb6a3cbf64d50d04282f82.zip |
2002-05-10 Mark Bradshaw <bradshaw@staff.crosswalk.com>
* libc/include/string.h (!__STRICT_ANSI__): Add strlcat and strlcpy.
* libc/string/Makefile.am: Add strlcat.c and strlcpy.c.
* libc/string/strlcat.c: New file.
* libc/string/strlcpy.c: New file.
Diffstat (limited to 'newlib/libc/string/Makefile.am')
-rw-r--r-- | newlib/libc/string/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/string/Makefile.am b/newlib/libc/string/Makefile.am index e36012500..d97c1ff67 100644 --- a/newlib/libc/string/Makefile.am +++ b/newlib/libc/string/Makefile.am @@ -23,6 +23,8 @@ LIB_SOURCES = \ strcpy.c \ strcspn.c \ strerror.c \ + strlcat.c \ + strlcpy.c \ strlen.c \ strlwr.c \ strncat.c \ |