summaryrefslogtreecommitdiff
path: root/libpq/tests/conninfo/postgres_fe.h
blob: d22d43ce4ecdc50c29fe0c6ce8f145b11eacba20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* file      : tests/conninfo/postgres_fe.h
 * license   : PostgreSQL License; see accompanying COPYRIGHT file
 */

/*
 * The upstream's uri-regress.c includes src/include/postgres_fe.h that is
 * located in libpq/include/ in our source tree. This file is not installed,
 * so to keep the test as a subproject and be able to test against the
 * installed libpq library we replace it with the header stub, containing the
 * bare minimum that is required the test to compile.
 */
#ifndef TESTS_CONNINFO_POSTGRES_FE_H
#define TESTS_CONNINFO_POSTGRES_FE_H

#include <stdbool.h>
#include <string.h>

#endif /* TESTS_CONNINFO_POSTGRES_FE_H */