k9core

Unnamed repository
Log | Files | Refs | LICENSE

commit ba25b37b958c1c06df4c1a5748dced7aedfbf8fd
parent 152ad26d8cc3bd3354a144c6f31ffc39d18a18c3
Author: call-cc <callcc@vxempire.xyz>
Date:   Mon,  1 Jun 2020 15:56:27 -0400

Add pwd

Diffstat:
Asrc/pwd.c | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/pwd.c b/src/pwd.c @@ -0,0 +1,9 @@ +#include <unistd.h> +#include <stdio.h> + + +int +main() { + puts(getcwd(NULL, 0)); + return 1; +}