aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/get_current_dir_name.c
blob: e07a6ee7dfdd506af97d82a760f88c3c9c94592f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * 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;
 * }
 */