musl-tcc/src/dirent/__dirent.h

12 lines
232 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
struct __dirstream
{
off_t tell;
int fd;
int buf_pos;
int buf_end;
volatile int lock[1];
/* Any changes to this struct must preserve the property:
* offsetof(struct __dirent, buf) % sizeof(off_t) == 0 */
char buf[2048];
};