1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03: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:
Ulrich Drepper
2009-03-10 15:26:57 +00:00
parent 686f8c9daf
commit a99e59d771
4 changed files with 12 additions and 2 deletions

View 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)