diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-05-15 06:49:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-05-15 06:49:29 +0000 |
commit | 2c1d61722625a1ee57ab284aad42acb7ec5662ca (patch) | |
tree | 0ea088eded588d3d43cb348687d7422598ab9382 /include/features.h | |
parent | 83d87915da34fc02d170ff8c356406040da2823f (diff) | |
download | glibc-2c1d61722625a1ee57ab284aad42acb7ec5662ca.tar.gz glibc-2c1d61722625a1ee57ab284aad42acb7ec5662ca.tar.xz glibc-2c1d61722625a1ee57ab284aad42acb7ec5662ca.zip |
* version.h (VERSION): Define to 6. glibc-2.6 cvs/glibc-2_6-base cvs/glibc-2_6
* include/features.h (__GLIBC_MINOR__): Likewise.
Diffstat (limited to 'include/features.h')
-rw-r--r-- | include/features.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/features.h b/include/features.h index ad9bbc70ee..0c729e8a3e 100644 --- a/include/features.h +++ b/include/features.h @@ -1,5 +1,4 @@ -/* Copyright (C) 1991,1992,1993,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006 - Free Software Foundation, Inc. +/* Copyright (C) 1991,1992,1993,1995-2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -304,7 +303,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__ 5 +#define __GLIBC_MINOR__ 6 #define __GLIBC_PREREQ(maj, min) \ ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min)) |