aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/appletlib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c
index 6c0be4a83..f0ed85215 100644
--- a/libbb/appletlib.c
+++ b/libbb/appletlib.c
@@ -1248,6 +1248,9 @@ int main(int argc UNUSED_PARAM, char **argv)
1248 /* Ignore critical errors, such as calling GetVolumeInformation() on 1248 /* Ignore critical errors, such as calling GetVolumeInformation() on
1249 * a floppy or CDROM drive with no media. */ 1249 * a floppy or CDROM drive with no media. */
1250 SetErrorMode(SEM_FAILCRITICALERRORS); 1250 SetErrorMode(SEM_FAILCRITICALERRORS);
1251# ifdef _UCRT
1252 SetEnvironmentVariable("BB_HELLO", "world");
1253# endif
1251#endif 1254#endif
1252 1255
1253#if defined(__MINGW64_VERSION_MAJOR) 1256#if defined(__MINGW64_VERSION_MAJOR)