summaryrefslogtreecommitdiffstats
path: root/PC/getpath_nt.c
diff options
context:
space:
mode:
Diffstat (limited to 'PC/getpath_nt.c')
-rw-r--r--PC/getpath_nt.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/PC/getpath_nt.c b/PC/getpath_nt.c
index 189fc27..d960d15 100644
--- a/PC/getpath_nt.c
+++ b/PC/getpath_nt.c
@@ -194,3 +194,10 @@ Py_GetExecPrefix()
{
return EXEC_PREFIX;
}
+
+char *
+Py_GetProgramFullPath()
+{
+ extern char *Py_GetProgramName();
+ return Py_GetProgramName();
+}