diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-07-25 22:56:37 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-07-25 22:56:37 +0300 |
commit | 40eefdd931066129d0bb2f6144a0ec7741c6cc2b (patch) | |
tree | 7f1cd006b2f53d7c03f778dfc275ee7de1895276 /gawkapi.c | |
parent | 4bb85f0f0e221c158b1a81af286acb422834c0fd (diff) | |
download | egawk-40eefdd931066129d0bb2f6144a0ec7741c6cc2b.tar.gz egawk-40eefdd931066129d0bb2f6144a0ec7741c6cc2b.tar.bz2 egawk-40eefdd931066129d0bb2f6144a0ec7741c6cc2b.zip |
Remove translation of errno strings from API.
Diffstat (limited to 'gawkapi.c')
-rw-r--r-- | gawkapi.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -241,12 +241,11 @@ api_update_ERRNO_int(awk_ext_id_t id, int errno_val) static void api_update_ERRNO_string(awk_ext_id_t id, - const char *string, - awk_bool_t translate) + const char *string) { (void) id; - update_ERRNO_string(string, (translate ? TRANSLATE : DONT_TRANSLATE)); + update_ERRNO_string(string); } /* api_unset_ERRNO --- unset ERRNO */ |