]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/gnu_get_libc_version.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[thirdparty/man-pages.git] / man3 / gnu_get_libc_version.3
CommitLineData
6f9799dc
MK
1.\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2.\" <mtk.manpages@gmail.com>
3.\"
93015253 4.\" %%%LICENSE_START(VERBATIM)
6f9799dc
MK
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
13.\"
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
21.\"
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 24.\" %%%LICENSE_END
6f9799dc 25.\"
4b8c67d9 26.TH GNU_GET_LIBC_VERSION 3 2017-09-15 "Linux" "Linux Programmer's Manual"
6f9799dc
MK
27.SH NAME
28gnu_get_libc_version, gnu_get_libc_release \- get glibc version and release
29.SH SYNOPSIS
30.nf
6f9799dc 31.B #include <gnu/libc-version.h>
dbfe9c70 32.PP
6f9799dc
MK
33.B const char *gnu_get_libc_version(void);
34.B const char *gnu_get_libc_release(void);
35.fi
36.SH DESCRIPTION
37The function
38.BR gnu_get_libc_version ()
39returns a string that identifies the glibc version available on the system.
847e0d88 40.PP
6f9799dc
MK
41The function
42.BR gnu_get_libc_release ()
43returns a string indicates the release status of the glibc version
44available on the system.
45This will be a string such as
46.IR "stable" .
47.SH VERSIONS
48These functions first appeared in glibc in version 2.1.
2bee9c14
PH
49.SH ATTRIBUTES
50For an explanation of the terms used in this section, see
51.BR attributes (7).
52.TS
53allbox;
54lbw23 lb lb
55l l l.
56Interface Attribute Value
57T{
58.BR gnu_get_libc_version (),
59.BR gnu_get_libc_release ()
60T} Thread safety MT-Safe
61.TE
6f9799dc
MK
62.SH CONFORMING TO
63These functions are glibc-specific.
64.SH EXAMPLE
65When run, the program below will produce output such as the following:
e646a1ba 66.PP
6f9799dc 67.in +4n
e646a1ba 68.EX
b43a3b30 69.RB "$" " ./a.out"
6f9799dc
MK
70GNU libc version: 2.8
71GNU libc release: stable
b8302363 72.EE
6f9799dc 73.in
9c330504 74.SS Program source
d84d0300 75\&
e7d0bb47 76.EX
6f9799dc
MK
77#include <gnu/libc-version.h>
78#include <stdlib.h>
79#include <stdio.h>
80
81int
82main(int argc, char *argv[])
83{
84 printf("GNU libc version: %s\\n", gnu_get_libc_version());
85 printf("GNU libc release: %s\\n", gnu_get_libc_release());
86 exit(EXIT_SUCCESS);
87}
e7d0bb47 88.EE
6f9799dc
MK
89.SH SEE ALSO
90.BR confstr (3)