aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <>2022-09-12 19:33:20 +0000
committerdrh <>2022-09-12 19:33:20 +0000
commitb126ec18b6f1a6046243073a0ac2dc5f845ed8b1 (patch)
treea2513dea92a2c3fc95b706f6f78a0dbab29992fc /src/os_unix.c
parentd8bb0b5ae61221dd26a336fe103b8a98bd8fc757 (diff)
downloadsqlite-b126ec18b6f1a6046243073a0ac2dc5f845ed8b1.tar.gz
sqlite-b126ec18b6f1a6046243073a0ac2dc5f845ed8b1.zip
Fix the &lt;sys/time.h&gt; include in os_kv.c.
FossilOrigin-Name: 878cc93e779c3857adc711f212520f007256274fcd3f6f3d72c754a937fcd198
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 422fb25ed..784686d0a 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -93,7 +93,7 @@
#include <sys/ioctl.h>
#include <unistd.h> /* amalgamator: keep */
#include <time.h>
-#include <sys/time.h>
+#include <sys/time.h> /* amalgamator: keep */
#include <errno.h>
#if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0
# include <sys/mman.h>