blob: 64186ec4e1a82290e812217ae402513f451a2af4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}
|