#define EQ_CRC32(c1,c2) ((c1) == (c2))
/* Constant table for CRC calculation */
-extern const uint32 pg_crc32_table[];
+extern PGDLLIMPORT const uint32 pg_crc32_table[];
#ifdef PROVIDE_64BIT_CRC
#define EQ_CRC64(c1,c2) ((c1).crc0 == (c2).crc0 && (c1).crc1 == (c2).crc1)
/* Constant table for CRC calculation */
-extern const uint32 pg_crc64_table0[];
-extern const uint32 pg_crc64_table1[];
+extern PGDLLIMPORT const uint32 pg_crc64_table0[];
+extern PGDLLIMPORT const uint32 pg_crc64_table1[];
#else /* int64 works */
typedef struct pg_crc64
#define EQ_CRC64(c1,c2) ((c1).crc0 == (c2).crc0)
/* Constant table for CRC calculation */
-extern const uint64 pg_crc64_table[];
+extern PGDLLIMPORT const uint64 pg_crc64_table[];
#endif /* INT64_IS_BUSTED */
#endif /* PROVIDE_64BIT_CRC */