aboutsummaryrefslogtreecommitdiff
path: root/ls.h
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:17:00 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:33:23 +1300
commitacfba0d01678609917934526c11558d1cf814b73 (patch)
treeabf8a38dd5ebaff5c25bd6220ce286b32580f894 /ls.h
parentFree some memory; appease valgrind(1) (diff)
downloadtunics-acfba0d01678609917934526c11558d1cf814b73.tar.gz
tunics-acfba0d01678609917934526c11558d1cf814b73.zip
Move ls includes into a header
Diffstat (limited to 'ls.h')
-rw-r--r--ls.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ls.h b/ls.h
new file mode 100644
index 0000000..d069cf1
--- /dev/null
+++ b/ls.h
@@ -0,0 +1,10 @@
+#ifndef __LS_H
+#define __LS_H
+
+#include <dirent.h>
+#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+
+#endif