diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-08-08 15:17:09 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-08-08 15:17:09 +0000 |
commit | c8c245c2d4a15ecabb4a6689caa35c0abfb659fb (patch) | |
tree | eb649679c92d012fbc8344e0e8ceea949dca1530 | |
parent | 4b876e164c757c6f77667fdd3a500224c3e3b4ce (diff) | |
download | newlib-c8c245c2d4a15ecabb4a6689caa35c0abfb659fb.zip newlib-c8c245c2d4a15ecabb4a6689caa35c0abfb659fb.tar.gz newlib-c8c245c2d4a15ecabb4a6689caa35c0abfb659fb.tar.bz2 |
2013-08-08 Freddie Chopin <freddie_chopin@op.pl>
* libc/string/strncat.c: Fix typo in documentation.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/string/strncat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 2762583..86d0a15 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2013-08-08 Freddie Chopin <freddie_chopin@op.pl> + + * libc/string/strncat.c: Fix typo in documentation. + 2013-08-01 Corinna Vinschen <vinschen@redhat.com> * libc/include/stdio_ext.h (__fbufsize): Define as inline function for diff --git a/newlib/libc/string/strncat.c b/newlib/libc/string/strncat.c index d31a030..2f5a061 100644 --- a/newlib/libc/string/strncat.c +++ b/newlib/libc/string/strncat.c @@ -7,7 +7,7 @@ INDEX ANSI_SYNOPSIS #include <string.h> - char *strncat(char *<restrict [dst]>, const char *<restrict [src]>, + char *strncat(char *restrict <[dst]>, const char *restrict <[src]>, size_t <[length]>); TRAD_SYNOPSIS |