| 1 | /* Message catalogs for internationalization.
|
|---|
| 2 | Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|---|
| 3 | Contributed by Ulrich Drepper <[email protected]>, 1995.
|
|---|
| 4 | This file is derived from the file libgettext.h in the GNU gettext package.
|
|---|
| 5 |
|
|---|
| 6 | This file is part of the GNU C Library. Its master source is NOT part of
|
|---|
| 7 | the C library, however.
|
|---|
| 8 |
|
|---|
| 9 | The GNU C Library is free software; you can redistribute it and/or
|
|---|
| 10 | modify it under the terms of the GNU Library General Public License as
|
|---|
| 11 | published by the Free Software Foundation; either version 2 of the
|
|---|
| 12 | License, or (at your option) any later version.
|
|---|
| 13 |
|
|---|
| 14 | The GNU C Library is distributed in the hope that it will be useful,
|
|---|
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 17 | Library General Public License for more details.
|
|---|
| 18 |
|
|---|
| 19 | You should have received a copy of the GNU Library General Public
|
|---|
| 20 | License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|---|
| 21 | write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|---|
| 22 | Boston, MA 02111-1307, USA. */
|
|---|
| 23 |
|
|---|
| 24 | #ifndef _LIBINTL_H
|
|---|
| 25 | #define _LIBINTL_H 1
|
|---|
| 26 |
|
|---|
| 27 | #include <features.h>
|
|---|
| 28 |
|
|---|
| 29 | /* We define an additional symbol to signal that we use the GNU
|
|---|
| 30 | implementation of gettext. */
|
|---|
| 31 | #define __USE_GNU_GETTEXT 1
|
|---|
| 32 |
|
|---|
| 33 | __BEGIN_DECLS
|
|---|
|
|---|