Skip to content

Commit 3846c2f

Browse files
committed
Include stddef.h in crypto.c to define size_t
In sqleet build, the type definition of size_t is provided by sqlite3.c included in the main sqleet.c source file. This commit adds the missing stddef.h include to make crypto.c more modular standalone component.
1 parent 7aef6e3 commit 3846c2f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crypto.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* This file is included by sqleet.c */
2+
#include <stddef.h>
23
#include <stdint.h>
34
#include <string.h>
45

0 commit comments

Comments
 (0)