mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
* manual/memory.texi (sbrk): Fix definition.
* manual/string.texi (strcasestr): Fix example typo. 2005-01-25 Roland McGrath <roland@redhat.com> * sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
This commit is contained in:
parent
edd806d26f
commit
d68684162b
@ -1,3 +1,12 @@
|
||||
2005-01-14 GOTO Masanori <gotom@debian.or.jp>
|
||||
|
||||
* manual/memory.texi (sbrk): Fix definition.
|
||||
* manual/string.texi (strcasestr): Fix example typo.
|
||||
|
||||
2005-01-25 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* sysdeps/generic/syslog.c [NO_SIGPIPE]: Protect sigpipe_handler decl.
|
||||
|
||||
2005-01-23 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* sysdeps/i386/Makefile (defines): If -mno-tls-direct-seg-refs appears
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user