summaryrefslogtreecommitdiff
path: root/contrib/tsearch2/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tsearch2/crc32.h')
-rw-r--r--contrib/tsearch2/crc32.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/contrib/tsearch2/crc32.h b/contrib/tsearch2/crc32.h
deleted file mode 100644
index 420c9594ac..0000000000
--- a/contrib/tsearch2/crc32.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef _CRC32_H
-#define _CRC32_H
-
-/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */
-
-/* Returns crc32 of data block */
-extern unsigned int crc32_sz(char *buf, int size);
-
-/* Returns crc32 of null-terminated string */
-#define crc32(buf) crc32_sz((buf),strlen(buf))
-
-#endif