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

#include "toys.h"

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

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