remove hand-written crt1.s and Scrt1.s files for all archs
[musl] / src / dirent / __dirent.h
1 struct __dirstream
2 {
3         int fd;
4         off_t tell;
5         int buf_pos;
6         int buf_end;
7         volatile int lock[2];
8         char buf[2048];
9 };