aboutsummaryrefslogtreecommitdiff
path: root/toys/pwd.c
blob: a6fdd4417ad51640a56a772ef0aa5028880e3144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* vi: set sw=4 ts=4: */
/*
 * pwd.c - Print working directory.
 */

#include "toys.h"

int pwd_main(void)
{
	char *pwd = xgetcwd();

	xprintf("%s\n", pwd);
	if (CFG_TOYBOX_FREE) free(pwd);

	return 0;
}