diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-21 20:18:00 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-21 20:18:00 +0200 |
commit | 4aa8be7f39becfedbf40c120a934ac0d6d1b5660 (patch) | |
tree | 8c412024cf3f12400e4ad2138dd1368e5e355b72 /nonposix.h | |
parent | 195f6c171ee765ef7c0bcba5b98ffea15b439882 (diff) | |
parent | ae02ce389bfd1bcb2797fe64d73a91ef73705688 (diff) | |
download | egawk-4aa8be7f39becfedbf40c120a934ac0d6d1b5660.tar.gz egawk-4aa8be7f39becfedbf40c120a934ac0d6d1b5660.tar.bz2 egawk-4aa8be7f39becfedbf40c120a934ac0d6d1b5660.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'nonposix.h')
-rw-r--r-- | nonposix.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -56,6 +56,9 @@ unsigned int getegid (void); int unsetenv (const char *); int setenv (const char *, const char *, int); void w32_maybe_set_errno (void); +char *w32_setlocale (int, const char *); +#define setlocale(c,v) w32_setlocale(c,v) + #endif /* __MINGW32__ */ #if defined(VMS) || defined(__DJGPP__) || defined(__MINGW32__) |