diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-03-10 15:26:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-03-10 15:26:57 +0000 |
commit | a99e59d771c05c039cdd35f3bc77929932a33d29 (patch) | |
tree | 0ccbdb7e3b5300220f80e84b56a279d17b7c4c7a /libio | |
parent | 686f8c9daf0ee99cf24894747987376577efa612 (diff) | |
download | glibc-a99e59d771c05c039cdd35f3bc77929932a33d29.zip glibc-a99e59d771c05c039cdd35f3bc77929932a33d29.tar.gz glibc-a99e59d771c05c039cdd35f3bc77929932a33d29.tar.bz2 |
* 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.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/fmemopen.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libio/fmemopen.c b/libio/fmemopen.c index b618ce5..d3750fc 100644 --- a/libio/fmemopen.c +++ b/libio/fmemopen.c @@ -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) |