fix pthread_cleanup_pop(1) crash in non-thread-capable, static-linked programs
[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 };