mirror of https://github.com/citusdata/citus.git
22 lines
443 B
C
22 lines
443 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* mod.h
|
|
*
|
|
* Type and function declarations for CStore
|
|
*
|
|
* Copyright (c) 2016, Citus Data, Inc.
|
|
*
|
|
* $Id$
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef MOD_H
|
|
#define MOD_H
|
|
|
|
/* Function declarations for extension loading and unloading */
|
|
extern void _PG_init(void);
|
|
extern void _PG_fini(void);
|
|
|
|
#endif /* MOD_H */
|