summaryrefslogtreecommitdiff
path: root/intl/gettext.h
diff options
context:
space:
mode:
authorJody Goldberg <jody@src.gnome.org>2001-06-29 00:22:33 +0000
committerJody Goldberg <jody@src.gnome.org>2001-06-29 00:22:33 +0000
commitc43e25d0fb6a4272f3a4bfdd4e4075174c14ca15 (patch)
treeedbccfff23c00eb6697066e8cec573a0eaa6db01 /intl/gettext.h
parent66360a8277e1b339e51ef7190f37f9a58fec36d7 (diff)
downloadshared-mime-info-c43e25d0fb6a4272f3a4bfdd4e4075174c14ca15.tar.gz
Release 0.67
svn path=/trunk/; revision=1834
Diffstat (limited to 'intl/gettext.h')
-rw-r--r--intl/gettext.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/intl/gettext.h b/intl/gettext.h
index 3cd23d7d..eb588907 100644
--- a/intl/gettext.h
+++ b/intl/gettext.h
@@ -1,5 +1,5 @@
-/* Internal header for GNU gettext internationalization functions.
- Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+/* Description of GNU message catalog format: general file layout.
+ Copyright (C) 1995, 1997, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -11,16 +11,13 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#ifndef _GETTEXT_H
#define _GETTEXT_H 1
-#include <stdio.h>
-
#if HAVE_LIMITS_H || _LIBC
# include <limits.h>
#endif
@@ -37,9 +34,8 @@
/* The following contortions are an attempt to use the C preprocessor
to determine an unsigned integral type that is 32 bits wide. An
alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
- doing that would require that the configure script compile and *run*
- the resulting executable. Locally running cross-compiled executables
- is usually not possible. */
+ as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work
+ when cross-compiling. */
#if __STDC__
# define UINT_MAX_32_BITS 4294967295U