]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* include/stdio.h (fmemopen): Add libc_hidden_proto.
authorUlrich Drepper <drepper@redhat.com>
Tue, 10 Mar 2009 15:26:57 +0000 (15:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 10 Mar 2009 15:26:57 +0000 (15:26 +0000)
* libio/fmemopen.c (fmemopen): Add libc_hidden_def.

* elf/sprof.c: Avoid warning about multi-line comment.

ChangeLog
elf/sprof.c
include/stdio.h
libio/fmemopen.c

index 7ba1e43df62b63332cae4ae851578dbe1c2e8c1c..6ac82abfac1375e2f759d74e42b23c49a4d5a8bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * time/tzset.c (__tzset_parse_tz): Use correct string when parsing
index ad723f3416d0780cdfdb34d8e7a12a72d949d3d0..fd4ffaeaba4773d85fa47480621f72871326c3dd 100644 (file)
@@ -87,7 +87,7 @@ static const struct argp_option options[] =
 
 /* Short description of program.  */
 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");
 
 /* Strings for arguments in help texts.  */
index d82728a845f8933c1b69e4270a2caacbe34b9e86..9fdafe4a854a0bcac520ef4e611d58290a3c8b81 100644 (file)
@@ -152,6 +152,7 @@ libc_hidden_proto (fread_unlocked)
 libc_hidden_proto (fwrite_unlocked)
 libc_hidden_proto (fgets_unlocked)
 libc_hidden_proto (fputs_unlocked)
+libc_hidden_proto (fmemopen)
 libc_hidden_proto (open_memstream)
 libc_hidden_proto (__libc_fatal)
 libc_hidden_proto (__vsprintf_chk)
index b618ce585d95412c555efd2c35c3f04a4c6545e3..d3750fc7de9ca358d8d8f75eb13e75ee5b55727f 100644 (file)
@@ -1,5 +1,6 @@
 /* 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.
    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);
 }
+libc_hidden_def (fmemopen)