aboutsummaryrefslogtreecommitdiff
path: root/pwd.h
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:33:56 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:33:56 +1300
commitcff2863f6b986490c5868bb177918666432c9f4c (patch)
tree779a9b12410883feee57b42cc287692893473808 /pwd.h
parentFree memory in ls(1) too (diff)
downloadtunics-cff2863f6b986490c5868bb177918666432c9f4c.tar.gz
tunics-cff2863f6b986490c5868bb177918666432c9f4c.zip
Quick and utterly wrong pwd(1) implementation
Diffstat (limited to 'pwd.h')
-rw-r--r--pwd.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pwd.h b/pwd.h
new file mode 100644
index 0000000..7ea4bed
--- /dev/null
+++ b/pwd.h
@@ -0,0 +1,8 @@
+#ifndef __PWD_H
+#define __PWD_H
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+#endif