diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-02-27 03:41:34 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-02-27 03:41:34 +0000 |
commit | f7c93458a9520106fe65bdc550245511cb1e270e (patch) | |
tree | cc01460d6f5cafb6c17fb2d0c83560389e987af5 /doc/src | |
parent | adfb44458163bf749a2ec04db52ae88051cca498 (diff) | |
download | postgresql-f7c93458a9520106fe65bdc550245511cb1e270e.tar.gz postgresql-f7c93458a9520106fe65bdc550245511cb1e270e.zip |
Use <> for libpq #include in example programs, per suggestion from Josh Berkus.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 13658470955..3a22384057b 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.302 2010/02/24 15:54:31 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.303 2010/02/27 03:41:34 momjian Exp $ --> <chapter id="libpq"> <title><application>libpq</application> - C Library</title> @@ -7010,7 +7010,7 @@ testlibpq.o(.text+0xa4): undefined reference to `PQerrorMessage' */ #include <stdio.h> #include <stdlib.h> -#include "libpq-fe.h" +#include <libpq-fe.h> static void exit_nicely(PGconn *conn) @@ -7158,7 +7158,7 @@ main(int argc, char **argv) #include <string.h> #include <errno.h> #include <sys/time.h> -#include "libpq-fe.h" +#include <libpq-fe.h> static void exit_nicely(PGconn *conn) @@ -7296,7 +7296,7 @@ main(int argc, char **argv) #include <stdlib.h> #include <string.h> #include <sys/types.h> -#include "libpq-fe.h" +#include <libpq-fe.h> /* for ntohl/htonl */ #include <netinet/in.h> |