diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-10-04 15:35:12 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-10-04 15:35:12 +0000 |
| commit | a593107d9ec34f26155afef3e357501ec203f9bf (patch) | |
| tree | bc93906c91e8c6782464f4c454ff6dbc89e66efd /src/backend/utils/adt/inet_net_ntop.c | |
| parent | f5a219204b090758ea724065fad41614333a2823 (diff) | |
| download | postgresql-a593107d9ec34f26155afef3e357501ec203f9bf.tar.gz | |
Add prototype include to inet types.
Diffstat (limited to 'src/backend/utils/adt/inet_net_ntop.c')
| -rw-r--r-- | src/backend/utils/adt/inet_net_ntop.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/utils/adt/inet_net_ntop.c b/src/backend/utils/adt/inet_net_ntop.c index 655f8ba62e..6d835df0c0 100644 --- a/src/backend/utils/adt/inet_net_ntop.c +++ b/src/backend/utils/adt/inet_net_ntop.c @@ -16,7 +16,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.1 1998/10/03 05:40:48 momjian Exp $"; +static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.2 1998/10/04 15:35:08 momjian Exp $"; #endif @@ -30,6 +30,9 @@ static const char rcsid[] = "$Id: inet_net_ntop.c,v 1.1 1998/10/03 05:40:48 momj #include <string.h> #include <stdlib.h> +#include <postgres.h> +#include <utils/builtins.h> + #ifdef SPRINTF_CHAR #define SPRINTF(x) strlen(sprintf/**/x) #else |
