Skip to content

Commit 20c0875

Browse files
committed
fix build when OMIT_MEMLOCK defined per sqlcipher#384
1 parent 84ecc5f commit 20c0875

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/crypto_impl.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
#include "crypto.h"
3636
#ifndef OMIT_MEMLOCK
3737
#if defined(__unix__) || defined(__APPLE__) || defined(_AIX)
38-
#include <errno.h>
39-
#include <unistd.h>
40-
#include <sys/resource.h>
41-
#include <sys/mman.h>
38+
#include <errno.h> /* amalgamator: dontcache */
39+
#include <unistd.h> /* amalgamator: dontcache */
40+
#include <sys/resource.h> /* amalgamator: dontcache */
41+
#include <sys/mman.h> /* amalgamator: dontcache */
4242
#elif defined(_WIN32)
4343
#include <windows.h>
4444
#endif

0 commit comments

Comments
 (0)