initial check-in, version 0.5.0
[musl] / src / dirent / __dirent.h
1 struct __DIR_s
2 {
3         int lock;
4         int fd;
5         off_t tell;
6         int buf_pos;
7         int buf_end;
8         char buf[2048];
9 };