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