aboutsummaryrefslogtreecommitdiff
path: root/core/cwd.c
blob: ab858c724a539d8a87ec0753109e92aa95ddc58c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "../lib/sys/getcwd.h"
#include "../lib/io/io.h"

char buf[1024] = { 0 };

int main()
{
	getcwd(buf, 1024);
	wstdf("%s\n", buf);
	return 0;
}