odyssey/sources/c.h

27 lines
379 B
C
Raw Normal View History

#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
#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>
#endif // ODYSSEY_C_H