From 90dad97fc07f049383903a166631e2c257f9b8c1 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 16 Dec 2025 17:02:05 +0100 Subject: Add support for TLS in the libc --- lib/libc/include/__dirent.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 lib/libc/include/__dirent.h (limited to 'lib/libc/include/__dirent.h') diff --git a/lib/libc/include/__dirent.h b/lib/libc/include/__dirent.h deleted file mode 100644 index 4f9ead80..00000000 --- a/lib/libc/include/__dirent.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef __LIBC_DIRENT_H -#define __LIBC_DIRENT_H - -#include -#include -#include - -struct linux_dirent64 { - uint64_t d_ino; - int64_t d_off; - unsigned short d_reclen; - unsigned char d_type; - char d_name[]; -}; - -struct __DIR { - int fildes; - int cached; - off_t tell; - off_t offset; - char buffer[BUFSIZ] __attribute__((__aligned__(8))); -}; - -#endif -- cgit v1.2.3