From c86dd7db77896014952396f60db88ce551b5a431 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Mon, 24 May 2004 15:04:09 +0000 Subject: [PATCH] system.h: dgettext takes two parameters. 2004-05-24 Paolo Bonzini * system.h [!ENABLE_NLS]: dgettext takes two parameters. From-SVN: r82204 --- libcpp/ChangeLog | 5 +++++ libcpp/system.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 84a0b8369f2..5a1c32557f3 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2004-05-24 Paolo Bonzini + + * system.h [!ENABLE_NLS]: dgettext takes two + parameters. + 2004-05-23 Paolo Bonzini Moved libcpp from the gcc subdirectory to the toplevel. diff --git a/libcpp/system.h b/libcpp/system.h index c43259575a8..35773115afb 100644 --- a/libcpp/system.h +++ b/libcpp/system.h @@ -183,7 +183,7 @@ extern int errno; #else /* Stubs. */ # undef dgettext -# define dgettext(msgid) (msgid) +# define dgettext(package, msgid) (msgid) #endif #ifndef _ -- 2.30.2