X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fobstack.c;h=0ef6c912f088c0f3a0d659dde88882f9e9afee46;hb=f9fa25dca3c78a2298e466e1b33caca0ee7e458b;hp=0244da3839954d5af8381cb945d5060ca0b4c08f;hpb=5df25d58712438f63840d7318cbb10ce483af07c;p=gnulib.git diff --git a/lib/obstack.c b/lib/obstack.c index 0244da383..0ef6c912f 100644 --- a/lib/obstack.c +++ b/lib/obstack.c @@ -1,5 +1,5 @@ /* obstack.c - subroutines used implicitly by object stack macros - Copyright (C) 1988-1994,96,97,98,99,2000,2001 Free Software Foundation, Inc. + Copyright (C) 1988-1994, 1996-1999, 2000-2002 Free Software Foundation, Inc. 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. @@ -458,16 +458,13 @@ _obstack_memory_used (h) } /* Define the error handler. */ -# ifndef _ -# if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC -# include -# ifndef _ -# define _(Str) gettext (Str) -# endif -# else -# define _(Str) (Str) -# endif +# ifdef _LIBC +# include +# else +# include "gettext.h" # endif +# define _(msgid) gettext (msgid) + # if defined _LIBC && defined USE_IN_LIBIO # include # define fputs(s, f) _IO_fputs (s, f)