From 2f62c9663ca48b647d71f21d0cdf499346457f0f Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 29 Nov 2012 14:20:08 +0100 Subject: Introduced the Build ID in INFO and --version output. The idea is to be able to identify a build in a unique way, so for instance after a bug report we can recognize that the build is the one of a popular Linux distribution and perform the debugging in the same environment. --- src/crc64.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/crc64.h (limited to 'src/crc64.h') diff --git a/src/crc64.h b/src/crc64.h new file mode 100644 index 000000000..ab375d3f4 --- /dev/null +++ b/src/crc64.h @@ -0,0 +1,8 @@ +#ifndef CRC64_H +#define CRC64_H + +#include + +uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); + +#endif -- cgit v1.2.1