From 7738050105d519278d9983907fc084595cff7fb1 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 2 Jun 2023 17:26:38 +0300 Subject: [PATCH] LibC: fix DIR typedef for C code --- libc/include/dirent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/dirent.h b/libc/include/dirent.h index 2711e1ea4..dbb4af0c0 100644 --- a/libc/include/dirent.h +++ b/libc/include/dirent.h @@ -11,7 +11,7 @@ __BEGIN_DECLS #include struct DIR; -typedef DIR DIR; +typedef struct DIR DIR; struct dirent {