1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

Always include <libintl.h> for glibc.

This commit is contained in:
Ulrich Drepper
2000-10-16 16:16:29 +00:00
parent c384499721
commit 457429b404
2 changed files with 4 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/* obstack.c - subroutines used implicitly by object stack macros /* obstack.c - subroutines used implicitly by object stack macros
Copyright (C) 1988-1994,96,97,98,99 Free Software Foundation, Inc. Copyright (C) 1988-1994,96,97,98,99,2000 Free Software Foundation, Inc.
This file is part of the GNU C Library. Its master source is NOT part of This file is part of the GNU C Library. Its master source is NOT part of
the C library, however. The master source lives in /gd/gnu/lib. the C library, however. The master source lives in /gd/gnu/lib.
@@ -451,7 +451,7 @@ _obstack_memory_used (h)
/* Define the error handler. */ /* Define the error handler. */
#ifndef _ #ifndef _
# ifdef HAVE_LIBINTL_H # if defined HAVE_LIBINTL_H || defined _LIBC
# include <libintl.h> # include <libintl.h>
# ifndef _ # ifndef _
# define _(Str) gettext (Str) # define _(Str) gettext (Str)

View File

@@ -77,9 +77,8 @@
#endif #endif
#ifndef _ #ifndef _
/* This is for other GNU distributions with internationalized messages. /* This is for other GNU distributions with internationalized messages. */
When compiling libc, the _ macro is predefined. */ # if defined HAVE_LIBINTL_H || defined _LIBC
# ifdef HAVE_LIBINTL_H
# include <libintl.h> # include <libintl.h>
# define _(msgid) gettext (msgid) # define _(msgid) gettext (msgid)
# else # else