diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-01-26 23:31:37 +0000 |
commit | 965a54a4eecc6cf5c53718f07290171f744c4d6c (patch) | |
tree | d1c7796f9828bc76b907afe6727ed0eb1d94ed4c /locale/programs | |
parent | 7071ad79db0886c0f17946feea71439400c706a9 (diff) | |
download | glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.gz glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.tar.bz2 glibc-965a54a4eecc6cf5c53718f07290171f744c4d6c.zip |
Remove __STDC__ conditionals from non-installed headers.
Diffstat (limited to 'locale/programs')
-rw-r--r-- | locale/programs/config.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/locale/programs/config.h b/locale/programs/config.h index 2f66997abe..606aa02cbf 100644 --- a/locale/programs/config.h +++ b/locale/programs/config.h @@ -1,5 +1,5 @@ /* Configuration for localedef program. - Copyright (C) 1995,1996,1997,1998,2000,2005 Free Software Foundation, Inc. + Copyright (C) 1995-1998,2000,2005,2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995. @@ -30,11 +30,7 @@ #define DEFAULT_CHARMAP "ANSI_X3.4-1968" /* ASCII */ #ifndef PARAMS -# if __STDC__ -# define PARAMS(args) args -# else -# define PARAMS(args) () -# endif +# define PARAMS(args) args #endif /* This must be one higer than the last used LC_xxx category value. */ |