diff options
Diffstat (limited to 'intl/libintl.h')
-rw-r--r-- | intl/libintl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/intl/libintl.h b/intl/libintl.h index 95eb90015e..89db38f3b1 100644 --- a/intl/libintl.h +++ b/intl/libintl.h @@ -1,5 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 2000-2002 Free Software Foundation, Inc. This file is part of the GNU C Library. This file is derived from the file libgettext.h in the GNU gettext package. @@ -27,6 +27,11 @@ implementation of gettext. */ #define __USE_GNU_GETTEXT 1 +/* Provide information about the supported file formats. Returns the + maximum minor revision number supported for a given major revision. */ +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ + ((major) == 0 ? 1 : -1) + __BEGIN_DECLS /* Look up MSGID in the current default message catalog for the current |