]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/generic/defs.c
Update to LGPL v2.1.
[thirdparty/glibc.git] / sysdeps / generic / defs.c
CommitLineData
28f540f4 1/* Definitions of global stdio data structures.
ebbad4cc
UD
2 Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
28f540f4 4
ebbad4cc 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
28f540f4 9
ebbad4cc
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
28f540f4 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
28f540f4 19
28f540f4
RM
20#include <stdio.h>
21
22/* This file should define the following
23 variables as appropriate for the system. */
24
25FILE *stdin, *stdout, *stderr;
26
27/* Pointer to the first stream in the list. */
28FILE *__stdio_head;
29\f
30/* This function MUST be in this file!
31 This is because we want _cleanup to go into the __libc_atexit set
32 when any stdio code is used (and to use any stdio code, one must reference
33 something defined in this file), and since only local symbols can be made
34 set elements, having the set element stab entry here and _cleanup elsewhere
35 loses; and having them both elsewhere loses because there is no reference
36 to cause _cleanup to be linked in. */
37
38void
ebbad4cc 39_cleanup ()
28f540f4 40{
6bac11d9 41 __fcloseall ();
28f540f4
RM
42}
43
44
45#ifdef HAVE_GNU_LD
3f33a4ce 46text_set_element (__libc_atexit, _cleanup);
28f540f4 47#endif