]> git.saurik.com Git - redis.git/blame - src/release.c
Compare integers in ziplist regardless of encoding
[redis.git] / src / release.c
CommitLineData
7c4fc71c 1/* Every time the Redis Git SHA1 or Dirty status changes only this file
2 * small file is recompiled, as we access this information in all the other
3 * files using this functions. */
4
5#include "release.h"
6
7char *redisGitSHA1(void) {
8 return REDIS_GIT_SHA1;
9}
10
11char *redisGitDirty(void) {
12 return REDIS_GIT_DIRTY;
13}