diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-24 00:13:57 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-05-24 00:13:57 +0000 |
commit | 7a364eb36494dcac90196db3d93d15086d6c1bc1 (patch) | |
tree | 9df83ec6d394ab772dbcb50a69b427fe111cc697 /newlib/libc/string/Makefile.am | |
parent | bb2b4dedc6b053ee59d03cb436e937ecb9fd6571 (diff) | |
download | cygnal-7a364eb36494dcac90196db3d93d15086d6c1bc1.tar.gz cygnal-7a364eb36494dcac90196db3d93d15086d6c1bc1.tar.bz2 cygnal-7a364eb36494dcac90196db3d93d15086d6c1bc1.zip |
2002-05-23 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/Makefile.am: Add support for strsep.c.
* libc/string/Makefile.in: Regenerated.
* libc/string/strsep.c: New file.
* libc/string/strtok.c: Change to call __strtok_r service routine.
* libc/string/strtok_r.c: Add __strtok_r routine which takes
additional flag parameter regarding whether to skip leading delimeters.
Change strtok_r to call __strtok_r.
Diffstat (limited to 'newlib/libc/string/Makefile.am')
-rw-r--r-- | newlib/libc/string/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/string/Makefile.am b/newlib/libc/string/Makefile.am index d97c1ff67..a56522121 100644 --- a/newlib/libc/string/Makefile.am +++ b/newlib/libc/string/Makefile.am @@ -33,6 +33,7 @@ LIB_SOURCES = \ strncpy.c \ strpbrk.c \ strrchr.c \ + strsep.c \ strspn.c \ strtok.c \ strtok_r.c \ |