소스 검색

fix: 修正esp32在luadb.c的编译报错

Wendal Chen 4 년 전
부모
커밋
757ce937e6
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      luat/vfs/luat_fs_luadb.c

+ 2 - 0
luat/vfs/luat_fs_luadb.c

@@ -473,6 +473,8 @@ const struct luat_vfs_filesystem vfs_fs_luadb = {
 };
 #endif
 
+#include "luat_crypto.h"
+
 int luat_luadb_checkfile(const char* path) {
     size_t binsize = luat_fs_fsize(path);
     uint8_t* binbuff = (uint8_t*)luat_heap_malloc(binsize * sizeof(uint8_t));