aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <>2022-09-12 12:41:07 +0000
committerdrh <>2022-09-12 12:41:07 +0000
commit6b013afb8880da7f755433ffd3387722d2b92a10 (patch)
tree21dbe6d3bdb1fcb29d5c679152cd89330bf3ce17 /src/os_unix.c
parentad5125a624f22d8d18989287437f50a69ca8ff2b (diff)
downloadsqlite-6b013afb8880da7f755433ffd3387722d2b92a10.tar.gz
sqlite-6b013afb8880da7f755433ffd3387722d2b92a10.zip
Fix the amalgamation so that it builds with the standard unix backend again.
FossilOrigin-Name: 0adf158f4e5791339988185cc29347c75056b062e0db65b5999fdfa1f433c1ed
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index fd7a50dcd..422fb25ed 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -87,11 +87,11 @@
/*
** standard include files.
*/
-#include <sys/types.h>
-#include <sys/stat.h>
+#include <sys/types.h> /* amalgamator: keep */
+#include <sys/stat.h> /* amalgamator: keep */
#include <fcntl.h>
#include <sys/ioctl.h>
-#include <unistd.h>
+#include <unistd.h> /* amalgamator: keep */
#include <time.h>
#include <sys/time.h>
#include <errno.h>