aboutsummaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/mingw.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index 273b8d840..f2b025e43 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -2507,3 +2507,11 @@ change_critical_error_dialogs(const char *newval)
2507 SetErrorMode(newval && newval[0] == '1' && newval[1] == '\0' ? 2507 SetErrorMode(newval && newval[0] == '1' && newval[1] == '\0' ?
2508 0 : SEM_FAILCRITICALERRORS); 2508 0 : SEM_FAILCRITICALERRORS);
2509} 2509}
2510
2511char *exe_relative_path(const char *tail)
2512{
2513 char *exepath = xstrdup(bb_busybox_exec_path);
2514 char *relpath = concat_path_file(dirname(exepath), tail);
2515 free(exepath);
2516 return relpath;
2517}