Update main.c

This commit is contained in:
blueloveTH 2025-05-28 17:35:28 +08:00
parent 45828643b7
commit 5336054b61

View File

@ -6,6 +6,11 @@
#include "pocketpy.h"
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
static char* read_file(const char* path) {
FILE* file = fopen(path, "rb");
if(file == NULL) {