X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/bb039e853df6c2754885c5cfb82dc3f7ea7d25b5..7c4fc71c156f1abdc64dba078030af98f3452b67:/release.c diff --git a/release.c b/release.c new file mode 100644 index 00000000..64186ec4 --- /dev/null +++ b/release.c @@ -0,0 +1,13 @@ +/* Every time the Redis Git SHA1 or Dirty status changes only this file + * small file is recompiled, as we access this information in all the other + * files using this functions. */ + +#include "release.h" + +char *redisGitSHA1(void) { + return REDIS_GIT_SHA1; +} + +char *redisGitDirty(void) { + return REDIS_GIT_DIRTY; +}