From: Justin Lebar Date: Mon, 24 Dec 2012 21:16:46 +0000 (-0500) Subject: Extern time_of_compilation. X-Git-Tag: v3.2~58 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95a74eff9d0a533d86cbb73ee54d89fc98c6a7e3;p=thirdparty%2Fccache.git Extern time_of_compilation. --- diff --git a/ccache.c b/ccache.c index 8f1ab031e..e0bd25cf6 100644 --- a/ccache.c +++ b/ccache.c @@ -138,7 +138,7 @@ static char *manifest_path; * Time of compilation. Used to see if include files have changed after * compilation. */ -static time_t time_of_compilation; +time_t time_of_compilation; /* * Files included by the preprocessor and their hashes/sizes. Key: file path. diff --git a/ccache.h b/ccache.h index 18a2b9ef1..5bcbf711b 100644 --- a/ccache.h +++ b/ccache.h @@ -213,6 +213,7 @@ void lockfile_release(const char *path); /* ------------------------------------------------------------------------- */ /* ccache.c */ +extern time_t time_of_compilation; bool cc_process_args(struct args *args, struct args **preprocessor_args, struct args **compiler_args); void cc_reset(void);