diff options
Diffstat (limited to 'src/common/utils.h')
-rw-r--r-- | src/common/utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index 7953d93e8..d245f94e2 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -7,6 +7,7 @@ #include "../common/cbasetypes.h" #include <stdio.h> // FILE* +#include <time.h> // generate a hex dump of the first 'length' bytes of 'buffer' void WriteDump(FILE* fp, const void* buffer, size_t length); @@ -37,7 +38,7 @@ struct HCache_interface { bool (*check) (const char *file); FILE *(*open) (const char *file, const char *opt); /* */ - size_t recompile_time; + time_t recompile_time; bool enabled; }; |