From ee7cd3e6b622a8c40236ac26270e369bc28af007 Mon Sep 17 00:00:00 2001 From: pk33 Date: Sun, 3 Nov 2024 01:39:28 +0100 Subject: modesetting tweaks --- musl/bits/dirent.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 musl/bits/dirent.h (limited to 'musl/bits/dirent.h') diff --git a/musl/bits/dirent.h b/musl/bits/dirent.h new file mode 100644 index 0000000..c845fe8 --- /dev/null +++ b/musl/bits/dirent.h @@ -0,0 +1,11 @@ +#define _DIRENT_HAVE_D_RECLEN +#define _DIRENT_HAVE_D_OFF +#define _DIRENT_HAVE_D_TYPE + +struct dirent { + ino_t d_ino; + off_t d_off; + unsigned short d_reclen; + unsigned char d_type; + char d_name[256]; +}; -- cgit v1.2.3