commit: 7616f485b81c6eb657708998e644e4623820b87f
parent 7a265363e91dfb8d72d3f8e15b1a002a3b166b58
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Wed, 2 Jul 2025 20:44:49 +0200
cmd/getconf: change feature test macros from POSIX to ALL
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/getconf.c b/cmd/getconf.c
@@ -2,8 +2,8 @@
// SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
// SPDX-License-Identifier: MPL-2.0
-#define _POSIX_C_SOURCE 202405L
-#define _XOPEN_SOURCE 800
+#define _ALL_SOURCE
+#define _DEFAULT_SOURCE
#include "../libutils/getopt_nolong.h"
#include <assert.h>