From 13e14a6bfd9f29cbfeab0c5161d2a994f97532e7 Mon Sep 17 00:00:00 2001 From: Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:53:53 +0100 Subject: Update/gnulib 2026 03 (#2247) * Sync with the 202601-stable Gnulib code (4a3650d887) * Ignore more deps stuff in gnulib * Remove autogenerated gnulib files * Ignore more gnulib generated headers --- gl/stat.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'gl/stat.c') diff --git a/gl/stat.c b/gl/stat.c index 66637837..da6a9862 100644 --- a/gl/stat.c +++ b/gl/stat.c @@ -1,5 +1,5 @@ /* Work around platform bugs in stat. - Copyright (C) 2009-2025 Free Software Foundation, Inc. + Copyright (C) 2009-2026 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -42,14 +42,7 @@ orig_stat (const char *filename, struct stat *buf) #endif /* Specification. */ -#ifdef __osf__ -/* Write "sys/stat.h" here, not , otherwise OSF/1 5.1 DTK cc - eliminates this include because of the preliminary #include - above. */ -# include "sys/stat.h" -#else -# include -#endif +#include #include "stat-time.h" @@ -119,7 +112,7 @@ rpl_stat (char const *name, struct stat *buf) ? */ /* To ease portability. Like in open.c. */ - if (strcmp (name, "/dev/null") == 0) + if (streq (name, "/dev/null")) name = "NUL"; /* POSIX @@ -294,8 +287,7 @@ rpl_stat (char const *name, struct stat *buf) if (info.nFileSizeHigh > 0 || info.nFileSizeLow > 0) { const char *last_dot = NULL; - const char *p; - for (p = info.cFileName; *p != '\0'; p++) + for (const char *p = info.cFileName; *p != '\0'; p++) if (*p == '.') last_dot = p; if (last_dot != NULL) -- cgit v1.2.3-74-g34f1