backend: fix includes

Fix a regression in commit d1dac54b72 where sys/stat.h is no longer
included in backend_firefox.c and backend_chromium.c.

It has to be explicitly included for the UTIME_xxx macros.
This commit is contained in:
CismonX 2025-02-10 19:55:43 +08:00
parent 916102484f
commit e199a1203a
No known key found for this signature in database
GPG key ID: 3094873E29A482FB
2 changed files with 2 additions and 0 deletions

View file

@ -37,6 +37,7 @@
#include <fcntl.h>
#include <iconv.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef BOOKMARKFS_BACKEND_CHROMIUM_WRITE

View file

@ -35,6 +35,7 @@
#include <string.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef BOOKMARKFS_BACKEND_FIREFOX_WRITE