merge from gcc

This commit is contained in:
DJ Delorie 2009-03-27 23:07:30 +00:00
parent 33aea2fd65
commit 10e1b6bb90
7 changed files with 109 additions and 8 deletions

View file

@ -158,7 +158,7 @@ not recommended.
@end deftypefn
@c make-temp-file.c:87
@c make-temp-file.c:95
@deftypefn Replacement char* choose_tmpdir ()
Returns a pointer to a directory path suitable for creating temporary
@ -602,7 +602,7 @@ relative prefix can be found, return @code{NULL}.
@end deftypefn
@c make-temp-file.c:137
@c make-temp-file.c:163
@deftypefn Replacement char* make_temp_file (const char *@var{suffix})
Return a temporary file name (as a string) or @code{NULL} if unable to
@ -643,6 +643,15 @@ Copies @var{length} bytes from memory region @var{in} to region
@end deftypefn
@c memmem.c:20
@deftypefn Supplemental void* memmem (const void *@var{haystack}, size_t @var{haystack_len} const void *@var{needle}, size_t @var{needle_len})
Returns a pointer to the first occurrence of @var{needle} (length
@var{needle_len}) in @var{haystack} (length @var{haystack_len}).
Returns @code{NULL} if not found.
@end deftypefn
@c memmove.c:6
@deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})