diff options
author | Ulrich Drepper <drepper@gmail.com> | 2012-01-03 08:01:45 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2012-01-03 08:01:45 -0500 |
commit | d1863a4e958fb6fcdfdc1a93188c8125ce5476ee (patch) | |
tree | 66ee14d7e3196c345fe356af6db216f0e5ebaf21 /wcsmbs | |
parent | aff067358751a03ad1f9e397204490b8bfb2fb29 (diff) | |
download | glibc-d1863a4e958fb6fcdfdc1a93188c8125ce5476ee.tar glibc-d1863a4e958fb6fcdfdc1a93188c8125ce5476ee.tar.gz glibc-d1863a4e958fb6fcdfdc1a93188c8125ce5476ee.tar.bz2 glibc-d1863a4e958fb6fcdfdc1a93188c8125ce5476ee.zip |
Typo in test for C11-capable compiler
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/c16rtomb.c | 4 | ||||
-rw-r--r-- | wcsmbs/mbrtoc16.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/wcsmbs/c16rtomb.c b/wcsmbs/c16rtomb.c index 33e6b92d02..c75ca3bf21 100644 --- a/wcsmbs/c16rtomb.c +++ b/wcsmbs/c16rtomb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011 Free Software Foundation, Inc. +/* Copyright (C) 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2011. @@ -31,7 +31,7 @@ # define EILSEQ EINVAL #endif -#if __STDC__ >= 20100L +#if __STDC__ >= 201000L # define u(c) U##c #else # define u(c) L##c diff --git a/wcsmbs/mbrtoc16.c b/wcsmbs/mbrtoc16.c index 3a3a45ce1a..7b5822d690 100644 --- a/wcsmbs/mbrtoc16.c +++ b/wcsmbs/mbrtoc16.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2011 Free Software Foundation, Inc. +/* Copyright (C) 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.org>, 2011. @@ -30,7 +30,7 @@ # define EILSEQ EINVAL #endif -#if __STDC__ >= 20100L +#if __STDC__ >= 201000L # define U(c) U##c #else # define U(c) L##c |