diff options
Diffstat (limited to 'contrib/ltree/crc32.h')
-rw-r--r-- | contrib/ltree/crc32.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ltree/crc32.h b/contrib/ltree/crc32.h index 97254a4a90..f70722c1c5 100644 --- a/contrib/ltree/crc32.h +++ b/contrib/ltree/crc32.h @@ -2,9 +2,9 @@ #define _CRC32_H /* Returns crc32 of data block */ -extern unsigned int crc32_sz(char *buf, int size); +extern unsigned int ltree_crc32_sz(char *buf, int size); /* Returns crc32 of null-terminated string */ -#define crc32(buf) crc32_sz((buf),strlen(buf)) +#define crc32(buf) ltree_crc32_sz((buf),strlen(buf)) #endif |