07b3ee68505c2017b17e3435f6295c197ed14686
[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 };