From 60a8ee1e4b1a417463840bbfa07f3a07cfb06014 Mon Sep 17 00:00:00 2001 From: short <> Date: Thu, 19 Apr 2001 17:38:44 +0000 Subject: [PATCH] 'gettext' retval retyped to 'const char *' to solve missing 'gettext' protype --- acconfig.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/acconfig.h b/acconfig.h index 8134a13..ac1bcef 100644 --- a/acconfig.h +++ b/acconfig.h @@ -216,9 +216,10 @@ extern char *sys_errlist[]; #ifdef HAVE_LIBINTL_H # include #endif /* HAVE_LIBINTL_H */ -# define _(String) gettext (String) +/* 'gettext()' may not be declared here and it will default to return 'int'! */ +# define _(String) ((const char *)gettext (String)) # ifdef gettext_noop -# define N_(String) gettext_noop (String) +# define N_(String) ((const char *)gettext_noop (String)) # else # define N_(String) (String) # endif -- 1.8.3.1