From f9fa25dca3c78a2298e466e1b33caca0ee7e458b Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 5 Nov 2002 21:45:29 +0000 Subject: Include gettext.h instead of with #ifdefs. --- lib/human.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'lib/human.c') diff --git a/lib/human.c b/lib/human.c index a9ccf38c48..2367137e00 100644 --- a/lib/human.c +++ b/lib/human.c @@ -1,6 +1,6 @@ /* human.c -- print human readable file size - Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software + Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify @@ -52,12 +52,8 @@ char *getenv (); #endif -#if ENABLE_NLS -# include -# define _(Text) gettext (Text) -#else -# define _(Text) Text -#endif +#include "gettext.h" +#define _(msgid) gettext (msgid) #include #include -- cgit v1.2.1