diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-05-24 15:04:09 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-05-24 15:04:09 +0000 |
commit | c86dd7db77896014952396f60db88ce551b5a431 (patch) | |
tree | cfcebfdce82ee88a362d6492e463dfc23a7bb57b /libcpp/system.h | |
parent | 7599f1b0501ea3dec6d5c7afc72072b7d658d9b8 (diff) | |
download | gcc-c86dd7db77896014952396f60db88ce551b5a431.zip gcc-c86dd7db77896014952396f60db88ce551b5a431.tar.gz gcc-c86dd7db77896014952396f60db88ce551b5a431.tar.bz2 |
system.h: dgettext takes two parameters.
2004-05-24 Paolo Bonzini <bonzini@gnu.org>
* system.h [!ENABLE_NLS]: dgettext takes two
parameters.
From-SVN: r82204
Diffstat (limited to 'libcpp/system.h')
-rw-r--r-- | libcpp/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/system.h b/libcpp/system.h index c432595..3577311 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 _ |