Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-08-08 19:17:09 +0400
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-08-08 19:17:09 +0400
commitc8c245c2d4a15ecabb4a6689caa35c0abfb659fb (patch)
treeeb649679c92d012fbc8344e0e8ceea949dca1530
parent4b876e164c757c6f77667fdd3a500224c3e3b4ce (diff)
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 27625834e..86d0a1573 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 d31a0302c..2f5a061bf 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