From: Roland McGrath Date: Wed, 26 Jan 2005 02:39:20 +0000 (+0000) Subject: * manual/memory.texi (sbrk): Fix definition. X-Git-Tag: upstream/2.30~16953 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d68684162bd587ffe94c0f62c9504e5841855ba5;p=external%2Fglibc.git * manual/memory.texi (sbrk): Fix definition. * manual/string.texi (strcasestr): Fix example typo. 2005-01-25 Roland McGrath * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl. --- diff --git a/ChangeLog b/ChangeLog index cc75cfe..1b12bf5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2005-01-14 GOTO Masanori + + * manual/memory.texi (sbrk): Fix definition. + * manual/string.texi (strcasestr): Fix example typo. + +2005-01-25 Roland McGrath + + * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl. + 2005-01-23 Roland McGrath * sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears diff --git a/manual/memory.texi b/manual/memory.texi index 91abb7f..ee2cd75 100644 --- a/manual/memory.texi +++ b/manual/memory.texi @@ -2384,7 +2384,7 @@ exceed the process' data storage limit. @comment unistd.h @comment BSD -@deftypefun int sbrk (ptrdiff_t @var{delta}) +@deftypefun void *sbrk (ptrdiff_t @var{delta}) This function is the same as @code{brk} except that you specify the new end of the data segment as an offset @var{delta} from the current end and on success the return value is the address of the resulting end of diff --git a/manual/string.texi b/manual/string.texi index 21ab714..d9de129 100644 --- a/manual/string.texi +++ b/manual/string.texi @@ -1781,9 +1781,9 @@ uppercase and lowercase characters are related. For example, @smallexample -strstr ("hello, world", "L") +strcasestr ("hello, world", "L") @result{} "llo, world" -strstr ("hello, World", "wo") +strcasestr ("hello, World", "wo") @result{} "World" @end smallexample @end deftypefun