]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/generic/defs.c
Update to LGPL v2.1.
[thirdparty/glibc.git] / sysdeps / generic / defs.c
1 /* Definitions of global stdio data structures.
2 Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
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.
9
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
13 Lesser General Public License for more details.
14
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. */
19
20 #include <stdio.h>
21
22 /* This file should define the following
23 variables as appropriate for the system. */
24
25 FILE *stdin, *stdout, *stderr;
26
27 /* Pointer to the first stream in the list. */
28 FILE *__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
38 void
39 _cleanup ()
40 {
41 __fcloseall ();
42 }
43
44
45 #ifdef HAVE_GNU_LD
46 text_set_element (__libc_atexit, _cleanup);
47 #endif