odyssey/src/odissey.c

22 lines
321 B
C
Raw Normal View History

/*
* odissey - PostgreSQL connection pooler and
* request router.
*/
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
2016-11-07 10:07:23 +00:00
#include "od_macro.h"
#include "od_list.h"
2016-11-07 11:29:49 +00:00
#include "od_log.h"
#include "od_scheme.h"
#include "od_lex.h"
2016-11-07 11:29:49 +00:00
#include "od_config.h"
2016-11-07 10:07:23 +00:00
int main(int argc, char *argv[])
{
return 0;
}