aboutsummaryrefslogtreecommitdiffstats
path: root/guts/get_current_dir_name.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/get_current_dir_name.c')
-rw-r--r--guts/get_current_dir_name.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/guts/get_current_dir_name.c b/guts/get_current_dir_name.c
new file mode 100644
index 0000000..671c5dc
--- /dev/null
+++ b/guts/get_current_dir_name.c
@@ -0,0 +1,15 @@
+/*
+ * static char *
+ * wrap_get_current_dir_name(void) {
+ * char * rc = NULL;
+ */
+
+ pseudo_debug(3, "get_current_dir_name (getcwd)\n");
+ /* this relies on a Linux extension, but we dutifully
+ * emulated that extension.
+ */
+ rc = wrap_getcwd(NULL, 0);
+
+/* return rc;
+ * }
+ */