diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-14 16:59:19 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-14 16:59:19 +0000 |
commit | cd24163f6de9925e50f1f9f93c0e4f286d4d4fe4 (patch) | |
tree | 8685bca4d0dc48c6d81d176e132d20cc4b9b7470 /src/backend/utils/adt/inet_net_ntop.c | |
parent | c743cc2ee43c23185578dfb5e550110ad561ca6e (diff) |
Fix another passel of include-file breakage. Kris Jurka, Tom Lane
Diffstat (limited to 'src/backend/utils/adt/inet_net_ntop.c')
-rw-r--r-- | src/backend/utils/adt/inet_net_ntop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/adt/inet_net_ntop.c b/src/backend/utils/adt/inet_net_ntop.c index f931658eaed..95b9cc9a246 100644 --- a/src/backend/utils/adt/inet_net_ntop.c +++ b/src/backend/utils/adt/inet_net_ntop.c @@ -14,7 +14,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_ntop.c,v 1.23 2006/07/14 14:52:24 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/inet_net_ntop.c,v 1.24 2006/07/14 16:59:19 tgl Exp $ */ #if defined(LIBC_SCCS) && !defined(lint) @@ -28,6 +28,7 @@ static const char rcsid[] = "Id: inet_net_ntop.c,v 1.1.2.2 2004/03/09 09:17:27 m #include <netinet/in.h> #include <arpa/inet.h> +#include "utils/builtins.h" #include "utils/inet.h" |