diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-09-21 08:27:16 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-09-21 08:27:16 +0000 |
commit | 895c822c40a842fe021462a373542fe52ae93a86 (patch) | |
tree | b34a8db4e80e00c644eaa424c87f9ea4b42b69c7 /src/libtipidee | |
parent | d91a79d86ffb544d49f5f04ca49e5d980188934d (diff) | |
download | tipidee-895c822c40a842fe021462a373542fe52ae93a86.tar.xz |
Some portability fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libtipidee')
-rw-r--r-- | src/libtipidee/tipidee_response_header_lastmodified.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libtipidee/tipidee_response_header_lastmodified.c b/src/libtipidee/tipidee_response_header_lastmodified.c index 3b3caa6..e946445 100644 --- a/src/libtipidee/tipidee_response_header_lastmodified.c +++ b/src/libtipidee/tipidee_response_header_lastmodified.c @@ -2,10 +2,11 @@ #include <skalibs/bsdsnowflake.h> -#include <sys/stat.h> #include <errno.h> #include <string.h> +#include <skalibs/stat.h> + #include <tipidee/response.h> size_t tipidee_response_header_lastmodified (char *s, size_t max, struct stat const *st) |