diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-01-28 07:39:59 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-01-28 07:39:59 +0200 |
commit | bcaf861a58e63aaf82aa74abcc92ac1d81b040a6 (patch) | |
tree | 773bc447451590be13dff8a30fbd4affcfab49fa /gettext.h | |
parent | 391b5daeb5371374d7ac3d88cadf1f46db935005 (diff) | |
parent | a63a80f6e0f734c235fc64ee81cd155bcf0730ca (diff) | |
download | egawk-bcaf861a58e63aaf82aa74abcc92ac1d81b040a6.tar.gz egawk-bcaf861a58e63aaf82aa74abcc92ac1d81b040a6.tar.bz2 egawk-bcaf861a58e63aaf82aa74abcc92ac1d81b040a6.zip |
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/gawk
Diffstat (limited to 'gettext.h')
-rw-r--r-- | gettext.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # undef gettext -# define gettext(Msgid) ((const char *) (Msgid)) +# define gettext(Msgid) ((char *) (Msgid)) # undef dgettext # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid)) # undef dcgettext |