2004-12-20 Roland McGrath <roland@frob.com>

* version.h (RELEASE, VERSION): development, 2.3.90
	* include/features.h (__GLIBC_MINOR__): Now 4.
This commit is contained in:
Roland McGrath 2004-12-20 23:37:42 +00:00
parent 03d527be49
commit 76e7f31780
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -1,4 +1,4 @@
/* This file just defines the current version number of libc. */ /* This file just defines the current version number of libc. */
#define RELEASE "stable" #define RELEASE "development"
#define VERSION "2.3.4" #define VERSION "2.3.90"