src/code_io.c:read_file() calls fstat(2) and copies stat.st_size into unsigned long variable. To support 64-bit file sizes or i-node numbers, one have to compile with -D_FILE_OFFSET_BITS=64 and fix data types to use off_t or size_t.
Created attachment 699461 [details] Allow 64-bit stat