]> sourceware.org Git - glibc.git/blame - version.c
Update.
[glibc.git] / version.c
CommitLineData
df4ef2ab
UD
1/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
28f540f4 3
df4ef2ab
UD
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
28f540f4 8
df4ef2ab
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
28f540f4 13
df4ef2ab
UD
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
28f540f4 18
ce563359
RM
19#include "version.h"
20const char __libc_release[] = RELEASE;
21const char __libc_version[] = VERSION;
28f540f4 22
f332db02
RM
23static const char banner[] =
24"GNU C Library "RELEASE" release version "VERSION", by Roland McGrath et al.\n\
25Compiled by GNU CC version "__VERSION__".\n\
df4ef2ab 26Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc.\n\
28f540f4
RM
27This is free software; see the source for copying conditions.\n\
28There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
499e7464
UD
29PARTICULAR PURPOSE.\n"
30#include "version-info.h"
f2ea0f5b 31"Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n";
f332db02
RM
32
33#include <unistd.h>
34
35void
36__libc_print_version (void)
37{
38 __write (STDOUT_FILENO, banner, sizeof banner - 1);
28f540f4 39}
463e148b
RM
40
41#ifdef HAVE_ELF
42/* This function is the entry point for the shared object.
43 Running the library as a program will get here. */
44
463e148b
RM
45void
46__libc_main (void)
47{
48 __libc_print_version ();
f332db02 49 _exit (0);
463e148b
RM
50}
51#endif
28f540f4
RM
52\f
53/*
54 Local Variables:
55 version-control: never
56 End:
57*/
This page took 0.071273 seconds and 5 git commands to generate.