From 7d284a409e9a07f03635ea77652d8d665f30ccda Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 13 Aug 2020 12:31:45 -0400 Subject: basic implementation of POSIX (not XOPEN) dirent functions --- src/dirent/_dirent.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/dirent/_dirent.h (limited to 'src/dirent/_dirent.h') diff --git a/src/dirent/_dirent.h b/src/dirent/_dirent.h new file mode 100644 index 00000000..14af64ff --- /dev/null +++ b/src/dirent/_dirent.h @@ -0,0 +1,11 @@ +#ifndef ___DIRENT_H__ +#define ___DIRENT_H__ + +#include + +struct __DIR { + int fd; + struct dirent de; +}; + +#endif -- cgit v1.2.1