2020-10-27 08:47:25 +00:00
|
|
|
|
|
|
|
#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>
|
2020-11-03 08:12:06 +00:00
|
|
|
|
2020-10-27 08:47:25 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2020-11-03 08:12:06 +00:00
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
|
2020-10-27 08:47:25 +00:00
|
|
|
#endif // ODYSSEY_C_H
|