diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-10-21 18:53:20 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-10-21 18:53:20 +0000 |
commit | b91f9042b045570e907811bd3eab00335f614bdf (patch) | |
tree | 7c9a2765b79affc0a54c8d21450c82ca7b272e03 /src/interfaces/ecpg/lib/extern.h | |
parent | 20f77d79a286556e0a5f44f9a9dc617c23f3a19c (diff) |
Add guards against double inclusion.
Diffstat (limited to 'src/interfaces/ecpg/lib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/lib/extern.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/lib/extern.h b/src/interfaces/ecpg/lib/extern.h index 24073bba4ea..00a65b94e21 100644 --- a/src/interfaces/ecpg/lib/extern.h +++ b/src/interfaces/ecpg/lib/extern.h @@ -1,3 +1,6 @@ +#ifndef _ECPG_LIB_EXTERN_H +#define _ECPG_LIB_EXTERN_H + #include "postgres_fe.h" #include "libpq-fe.h" @@ -87,3 +90,5 @@ PGresult ** bool ECPGstore_result(const PGresult *results, int act_field, const struct statement * stmt, struct variable * var); + +#endif /* _ECPG_LIB_EXTERN_H */ |