mirror of https://github.com/yandex/odyssey.git
20 lines
289 B
C
20 lines
289 B
C
![]() |
|
||
|
#ifndef ODYSSEY_C_H
|
||
|
#define ODYSSEY_C_H
|
||
|
|
||
|
/*
|
||
|
* Odyssey.
|
||
|
*
|
||
|
* Scalable PostgreSQL connection pooler.
|
||
|
*/
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdint.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <ctype.h>
|
||
|
#include <inttypes.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
#endif // ODYSSEY_C_H
|