blob: 6b012ab872ff05a272d62314e48abe3044454a83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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-2013, 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"
|