From bba8fe374600c4e42db31ca82775cb46c77d55f9 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sun, 23 Mar 2025 16:36:26 -0700 Subject: [PATCH] utimens: Fix missing declarations on NetBSD (regr. 2024-09-16). * lib/utimens.h [HAVE_UTIMENS || HAVE_LUTIMENS]: Include instead of for the declarations of these functions on NetBSD. --- ChangeLog | 7 +++++++ lib/utimens.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e0a18ebd25..b6a0671147 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2025-03-23 Collin Funk + + utimens: Fix missing declarations on NetBSD (regr. 2024-09-16). + * lib/utimens.h [HAVE_UTIMENS || HAVE_LUTIMENS]: Include + instead of for the declarations of these functions on + NetBSD. + 2025-03-21 Bruno Haible getloadavg: Improve Linux and Android support. diff --git a/lib/utimens.h b/lib/utimens.h index 007958dd93..62ea7d8f5f 100644 --- a/lib/utimens.h +++ b/lib/utimens.h @@ -25,7 +25,7 @@ #include #if HAVE_UTIMENS || HAVE_LUTIMENS -# include +# include #endif #ifdef __cplusplus -- 2.39.5