From 8ce1f18be38cef6c3d59a7ca0bec15ee1a00fac3 Mon Sep 17 00:00:00 2001 From: Mikhail Romanko Date: Tue, 18 Aug 2026 10:19:14 +0300 Subject: [PATCH] Add POSIX_C_SOURCE --- posix/Dir.c | 1 + posix/Stat.c | 1 + 2 files changed, 2 insertions(+) diff --git a/posix/Dir.c b/posix/Dir.c index 534718f..47c8d9a 100644 --- a/posix/Dir.c +++ b/posix/Dir.c @@ -1,3 +1,4 @@ +#define _POSIX_C_SOURCE 200112L #include "../CgeFs.h" #include #include diff --git a/posix/Stat.c b/posix/Stat.c index 84c5120..ac2983c 100644 --- a/posix/Stat.c +++ b/posix/Stat.c @@ -1,3 +1,4 @@ +#define _POSIX_C_SOURCE 200112L #include "../CgeFs.h" #include #include