~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to include/features.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
   __USE_UNIX98         Define Single Unix V2 things.
69
69
   __USE_XOPEN2K        Define XPG6 things.
70
70
   __USE_XOPEN2KXSI     Define XPG6 XSI things.
 
71
   __USE_XOPEN2K8       Define XPG7 things.
71
72
   __USE_XOPEN2K8XSI    Define XPG7 XSI things.
72
73
   __USE_LARGEFILE      Define correct standard I/O things.
73
74
   __USE_LARGEFILE64    Define LFS things with separate names.
337
338
/* Major and minor version number of the GNU C library package.  Use
338
339
   these macros to test for features in specific releases.  */
339
340
#define __GLIBC__       2
340
 
#define __GLIBC_MINOR__ 13
 
341
#define __GLIBC_MINOR__ 15
341
342
 
342
343
#define __GLIBC_PREREQ(maj, min) \
343
344
        ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))