From 872cf03f26c2801ae6c3008ce5fa0d7856f5f85d Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 14 Dec 2025 18:10:13 +0100 Subject: libc: implement err/warn functions --- lib/libc/stat/chmod.c | 1 - lib/libc/stat/fchmod.c | 1 - lib/libc/stat/fchmodat.c | 1 - lib/libc/stat/fstatat.c | 1 - lib/libc/stat/mkdirat.c | 1 - lib/libc/stat/mknod.c | 1 - lib/libc/stat/mknodat.c | 1 - lib/libc/stat/umask.c | 1 - lib/libc/stat/utimensat.c | 1 - 9 files changed, 9 deletions(-) (limited to 'lib/libc/stat') diff --git a/lib/libc/stat/chmod.c b/lib/libc/stat/chmod.c index 005869ba..061fc87e 100644 --- a/lib/libc/stat/chmod.c +++ b/lib/libc/stat/chmod.c @@ -1,6 +1,5 @@ - #include // for chmod #include // for mode_t #include // for __syscall_2, syscall diff --git a/lib/libc/stat/fchmod.c b/lib/libc/stat/fchmod.c index 89ad637a..84d8ef50 100644 --- a/lib/libc/stat/fchmod.c +++ b/lib/libc/stat/fchmod.c @@ -1,6 +1,5 @@ - #include // for fchmod #include // for mode_t #include // for __syscall_2, syscall diff --git a/lib/libc/stat/fchmodat.c b/lib/libc/stat/fchmodat.c index 7bf834b1..ae5e882f 100644 --- a/lib/libc/stat/fchmodat.c +++ b/lib/libc/stat/fchmodat.c @@ -1,6 +1,5 @@ - #include // for fchmodat #include // for mode_t #include // for __syscall_4, syscall diff --git a/lib/libc/stat/fstatat.c b/lib/libc/stat/fstatat.c index 08519fe3..746848b7 100644 --- a/lib/libc/stat/fstatat.c +++ b/lib/libc/stat/fstatat.c @@ -3,7 +3,6 @@ #define __BITS_STAT_H_ - #include // for stat #include // for __syscall_5, syscall diff --git a/lib/libc/stat/mkdirat.c b/lib/libc/stat/mkdirat.c index dc075bb2..03b2c070 100644 --- a/lib/libc/stat/mkdirat.c +++ b/lib/libc/stat/mkdirat.c @@ -1,6 +1,5 @@ - #include // for mkdirat #include // for mode_t #include // for __syscall_3, syscall diff --git a/lib/libc/stat/mknod.c b/lib/libc/stat/mknod.c index e76e232b..4da1139e 100644 --- a/lib/libc/stat/mknod.c +++ b/lib/libc/stat/mknod.c @@ -1,6 +1,5 @@ - #include // for AT_FDCWD #include // for mknod #include // for dev_t, mode_t diff --git a/lib/libc/stat/mknodat.c b/lib/libc/stat/mknodat.c index d19253e6..928b1208 100644 --- a/lib/libc/stat/mknodat.c +++ b/lib/libc/stat/mknodat.c @@ -1,6 +1,5 @@ - #include // for mknodat #include // for dev_t, mode_t #include // for __syscall_4, syscall diff --git a/lib/libc/stat/umask.c b/lib/libc/stat/umask.c index e33ec9f4..3eea89e8 100644 --- a/lib/libc/stat/umask.c +++ b/lib/libc/stat/umask.c @@ -1,6 +1,5 @@ - #include // for umask #include // for mode_t #include // for __syscall_1, syscall diff --git a/lib/libc/stat/utimensat.c b/lib/libc/stat/utimensat.c index 984c1921..aba18657 100644 --- a/lib/libc/stat/utimensat.c +++ b/lib/libc/stat/utimensat.c @@ -1,6 +1,5 @@ - #include // for __syscall_4, syscall #include // for timespec -- cgit v1.2.3