sbase/pwd.c

12 lines
175 B
C
Raw Normal View History

2011-05-23 15:15:19 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
int
main(void)
{
2011-05-25 23:01:20 -04:00
puts(agetcwd());
2011-05-23 15:15:19 -04:00
return EXIT_SUCCESS;
}