diff options
Diffstat (limited to 'src/port/pg_crc.c')
-rw-r--r-- | src/port/pg_crc.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/port/pg_crc.c b/src/port/pg_crc.c new file mode 100644 index 00000000000..ebf4f3a61a7 --- /dev/null +++ b/src/port/pg_crc.c @@ -0,0 +1,21 @@ +/*------------------------------------------------------------------------- + * + * pg_crc.c + * PostgreSQL CRC support + * + * This file simply #includes the CRC table definitions so that they are + * available to programs linked with libpgport. + * + * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * + * IDENTIFICATION + * src/port/pg_crc.c + * + *------------------------------------------------------------------------- + */ + +#include "c.h" + +#include "utils/pg_crc_tables.h" |