aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/get_current_dir_name.c
blob: 79f82f9c90e722f3f9c7779b615262f3ac6328d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static char *
 * wrap_get_current_dir_name(void) {
 *	char * rc = NULL;
 */

	/* this relies on a Linux extension, but we dutifully
	 * emulated that extension. 
	 */
	rc = wrap_getcwd(NULL, 0);

/*	return rc;
 * }
 */