summaryrefslogtreecommitdiff
path: root/libio
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-03-10 15:26:57 +0000
committerUlrich Drepper <drepper@redhat.com>2009-03-10 15:26:57 +0000
commita99e59d771c05c039cdd35f3bc77929932a33d29 (patch)
tree0ccbdb7e3b5300220f80e84b56a279d17b7c4c7a /libio
parent686f8c9daf0ee99cf24894747987376577efa612 (diff)
* 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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libio/fmemopen.c b/libio/fmemopen.c
index b618ce585d..d3750fc7de 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)