12 lines
175 B
C
12 lines
175 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "util.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
puts(agetcwd());
|
|
return EXIT_SUCCESS;
|
|
}
|