aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-08-08 15:17:09 +0000
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-08-08 15:17:09 +0000
commitc8c245c2d4a15ecabb4a6689caa35c0abfb659fb (patch)
treeeb649679c92d012fbc8344e0e8ceea949dca1530
parent4b876e164c757c6f77667fdd3a500224c3e3b4ce (diff)
downloadnewlib-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/ChangeLog4
-rw-r--r--newlib/libc/string/strncat.c2
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