1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix the amalgamation so that it builds with the standard unix backend again.

FossilOrigin-Name: 0adf158f4e5791339988185cc29347c75056b062e0db65b5999fdfa1f433c1ed
This commit is contained in:
drh
2022-09-12 12:41:07 +00:00
parent ad5125a624
commit 6b013afb88
3 changed files with 11 additions and 11 deletions

View File

@@ -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>