diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-08-14 14:25:14 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-08-14 14:25:14 -0400 |
commit | 02dc7466baed074f7833bd6fd1067e23e1bfa1dd (patch) | |
tree | 79cae7998df77e6ed6387b0aac629ce894fab9a1 /src | |
parent | b68ff3ea672c066b7eee6ca777618025b40abfd4 (diff) | |
download | postgresql-02dc7466baed074f7833bd6fd1067e23e1bfa1dd.tar.gz postgresql-02dc7466baed074f7833bd6fd1067e23e1bfa1dd.zip |
Remove duplicate function declarations.
Christoph Berg
Discussion: https://postgr.es/m/20180814165536.GB21152@msg.df7cb.de
Diffstat (limited to 'src')
-rw-r--r-- | src/include/libpq/pqformat.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/libpq/pqformat.h b/src/include/libpq/pqformat.h index 6acb2e8de04..f0337325bb4 100644 --- a/src/include/libpq/pqformat.h +++ b/src/include/libpq/pqformat.h @@ -31,9 +31,6 @@ extern void pq_send_ascii_string(StringInfo buf, const char *str); extern void pq_sendfloat4(StringInfo buf, float4 f); extern void pq_sendfloat8(StringInfo buf, float8 f); -extern void pq_sendfloat4(StringInfo buf, float4 f); -extern void pq_sendfloat8(StringInfo buf, float8 f); - /* * Append a [u]int8 to a StringInfo buffer, which already has enough space * preallocated. |