summaryrefslogtreecommitdiff
path: root/src/dirent/telldir.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 13:17:13 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 13:17:13 -0500
commit533a5aafece3b93b547c37b1ab1e29c82b3831e3 (patch)
treeaf86abcef05521664d04fbb4421a8e4ee36e7cd5 /src/dirent/telldir.c
parentd5db102efee64cc7f594b740bc131bc01e4973d5 (diff)
merge XOPEN functions
Diffstat (limited to 'src/dirent/telldir.c')
-rw-r--r--src/dirent/telldir.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dirent/telldir.c b/src/dirent/telldir.c
new file mode 100644
index 00000000..4e51810d
--- /dev/null
+++ b/src/dirent/telldir.c
@@ -0,0 +1,10 @@
+#include <dirent.h>
+
+long telldir(DIR * dirp)
+{
+ return 0;
+}
+
+/*
+XOPEN(4)
+*/