diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:17:13 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 13:17:13 -0500 |
commit | 533a5aafece3b93b547c37b1ab1e29c82b3831e3 (patch) | |
tree | af86abcef05521664d04fbb4421a8e4ee36e7cd5 | |
parent | d5db102efee64cc7f594b740bc131bc01e4973d5 (diff) |
merge XOPEN functions
-rw-r--r-- | src/dirent/seekdir.c | 9 | ||||
-rw-r--r-- | src/dirent/telldir.c | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/dirent/seekdir.c b/src/dirent/seekdir.c new file mode 100644 index 00000000..62b1d30b --- /dev/null +++ b/src/dirent/seekdir.c @@ -0,0 +1,9 @@ +#include <dirent.h> + +void seekdir(DIR * dirp, long loc) +{ +} + +/* +XOPEN(4) +*/ 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) +*/ |