aboutsummaryrefslogtreecommitdiffstats
path: root/guts/get_current_dir_name.c
blob: 671c5dc95508d96e2db397779214d5851eeb2368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
 * }
 */