From af16aa6702ffb385a36504a459210e94704bbe2b Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 24 Mar 2023 02:47:11 +0100 Subject: Define _POSIX_C_SOURCE This allows using the default compiler defined by make(1) (i.e., c99(1)), thus improving POSIX compatibility. --- html.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'html.c') diff --git a/html.c b/html.c index cad966b..41ce387 100644 --- a/html.c +++ b/html.c @@ -1,3 +1,5 @@ +#define _POSIX_C_SOURCE 200809L + #include "html.h" #include #include -- cgit v1.2.3