mirror of https://github.com/citusdata/citus.git
17 lines
440 B
C
17 lines
440 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* shared_library_init.h
|
|
* Functionality related to the initialization of the Citus extension.
|
|
*
|
|
* Copyright (c) 2017, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef SHARED_LIBRARY_INIT_H
|
|
#define SHARED_LIBRARY_INIT_H
|
|
|
|
extern void StartupCitusBackend(void);
|
|
|
|
#endif /* SHARED_LIBRARY_INIT_H */
|