]> git.ipfire.org Git - thirdparty/glibc.git/blob - csu/init.c
Update.
[thirdparty/glibc.git] / csu / init.c
1 /* Special startup support.
2 Copyright (C) 1997, 1998 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
6 and/or modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 In addition to the permissions in the GNU Library General Public
11 License, the Free Software Foundation gives you unlimited
12 permission to link the compiled version of this file with other
13 programs, and to distribute those programs without any restriction
14 coming from the use of this file. (The Library General Public
15 License restrictions do apply in other respects; for example, they
16 cover modification of the file, and distribution when not linked
17 into another program.)
18
19 The GNU C Library is distributed in the hope that it will be
20 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU Library General Public License for more details.
23
24 You should have received a copy of the GNU Library General Public
25 License along with the GNU C Library; see the file COPYING.LIB. If not,
26 write to the Free Software Foundation, 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. */
28
29 #if defined USE_IN_LIBIO && defined __GNUC__ && __GNUC__ >= 2
30
31 #undef _LIBC
32 #include <libio.h>
33
34 /* This records which stdio is linked against in the application. */
35 const void *const _IO_stdin_used = _IO_stdin;
36
37 #endif