mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 06:30:05 +00:00
* include/stdio.h (fmemopen): Add libc_hidden_proto.
* libio/fmemopen.c (fmemopen): Add libc_hidden_def. * elf/sprof.c: Avoid warning about multi-line comment.
This commit is contained in:
parent
686f8c9daf
commit
a99e59d771
@ -1,3 +1,10 @@
|
|||||||
|
2009-03-10 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* include/stdio.h (fmemopen): Add libc_hidden_proto.
|
||||||
|
* libio/fmemopen.c (fmemopen): Add libc_hidden_def.
|
||||||
|
|
||||||
|
* elf/sprof.c: Avoid warning about multi-line comment.
|
||||||
|
|
||||||
2009-03-10 Ulrich Drepper <drepper@redhat.com>
|
2009-03-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* time/tzset.c (__tzset_parse_tz): Use correct string when parsing
|
* time/tzset.c (__tzset_parse_tz): Use correct string when parsing
|
||||||
|
@ -87,7 +87,7 @@ static const struct argp_option options[] =
|
|||||||
|
|
||||||
/* Short description of program. */
|
/* Short description of program. */
|
||||||
static const char doc[] = N_("Read and display shared object profiling data.");
|
static const char doc[] = N_("Read and display shared object profiling data.");
|
||||||
//For bug reporting instructions, please see:\n \
|
//For bug reporting instructions, please see:\n
|
||||||
//<http://www.gnu.org/software/libc/bugs.html>.\n");
|
//<http://www.gnu.org/software/libc/bugs.html>.\n");
|
||||||
|
|
||||||
/* Strings for arguments in help texts. */
|
/* Strings for arguments in help texts. */
|
||||||
|
@ -152,6 +152,7 @@ libc_hidden_proto (fread_unlocked)
|
|||||||
libc_hidden_proto (fwrite_unlocked)
|
libc_hidden_proto (fwrite_unlocked)
|
||||||
libc_hidden_proto (fgets_unlocked)
|
libc_hidden_proto (fgets_unlocked)
|
||||||
libc_hidden_proto (fputs_unlocked)
|
libc_hidden_proto (fputs_unlocked)
|
||||||
|
libc_hidden_proto (fmemopen)
|
||||||
libc_hidden_proto (open_memstream)
|
libc_hidden_proto (open_memstream)
|
||||||
libc_hidden_proto (__libc_fatal)
|
libc_hidden_proto (__libc_fatal)
|
||||||
libc_hidden_proto (__vsprintf_chk)
|
libc_hidden_proto (__vsprintf_chk)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* Fmemopen implementation.
|
/* Fmemopen implementation.
|
||||||
Copyright (C) 2000, 2002, 2005, 2006, 2008 Free Software Foundation, Inc.
|
Copyright (C) 2000, 2002, 2005, 2006, 2008, 2009
|
||||||
|
Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Hanno Mueller, kontakt@hanno.de, 2000.
|
Contributed by Hanno Mueller, kontakt@hanno.de, 2000.
|
||||||
|
|
||||||
@ -258,3 +259,4 @@ fmemopen (void *buf, size_t len, const char *mode)
|
|||||||
|
|
||||||
return _IO_fopencookie (c, mode, iof);
|
return _IO_fopencookie (c, mode, iof);
|
||||||
}
|
}
|
||||||
|
libc_hidden_def (fmemopen)
|
||||||
|
Loading…
Reference in New Issue
Block a user