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