towupper/towlower: fast path for ascii chars
[oweals/musl.git] / src / dirent / __dirent.h
index 07b3ee68505c2017b17e3435f6295c197ed14686..32871baf51a1f38cbd4a97d034de3dab9f69ff51 100644 (file)
@@ -1,9 +1,9 @@
-struct __DIR_s
+struct __dirstream
 {
-       int lock;
        int fd;
        off_t tell;
        int buf_pos;
        int buf_end;
+       volatile int lock[2];
        char buf[2048];
 };