From 45d7aff47545f52136487fbb5b06cdcf716cbe9f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 13 Jan 2021 01:48:36 -0800 Subject: Major overhaul of some of the memory tracking code, as well as some cleanup of the compilation code. --- file_loader.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'file_loader.h') diff --git a/file_loader.h b/file_loader.h index 0094732..2a47d40 100644 --- a/file_loader.h +++ b/file_loader.h @@ -6,10 +6,13 @@ #include +struct allocated_op_s; // declared in types.h + typedef struct { const char *filename; char *contents, **lines, *end; size_t nlines; + struct allocated_op_s *ops; unsigned int mmapped:1; } file_t; -- cgit v1.2.3