1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

* include/features.h (__GLIBC_MINOR__): Bump to 7.

This commit is contained in:
Ulrich Drepper
2007-10-17 20:27:09 +00:00
parent 50c9fbbfdf
commit 777bc4bfd9
2 changed files with 2 additions and 1 deletions

View File

@@ -311,7 +311,7 @@
/* Major and minor version number of the GNU C library package. Use
these macros to test for features in specific releases. */
#define __GLIBC__ 2
#define __GLIBC_MINOR__ 6
#define __GLIBC_MINOR__ 7
#define __GLIBC_PREREQ(maj, min) \
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))