mirror of https://github.com/yandex/odyssey.git
25 lines
371 B
C
25 lines
371 B
C
#ifndef SONATA_H_
|
|
#define SONATA_H_
|
|
|
|
/*
|
|
* sonata.
|
|
*
|
|
* Protocol-level PostgreSQL client library.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include <so_macro.h>
|
|
#include <so_stream.h>
|
|
#include <so_header.h>
|
|
#include <so_read.h>
|
|
#include <so_fewrite.h>
|
|
#include <so_bewrite.h>
|
|
#include <so_beread.h>
|
|
|
|
#endif
|