summaryrefslogtreecommitdiff
path: root/src/backend/port/inet_aton.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-02-07 22:07:02 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-02-07 22:07:02 +0000
commitf2802669856dafe9e26b21cc8779acf6dcbef921 (patch)
tree56a9728b63f602859d9c0ce1b5468264219f81dc /src/backend/port/inet_aton.c
parent5212ef8e46dd89b6e5ed281c286910bb6e37d985 (diff)
Clean up some minor compile warnings.
Diffstat (limited to 'src/backend/port/inet_aton.c')
-rw-r--r--src/backend/port/inet_aton.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c
index ae954887c26..2922c137caa 100644
--- a/src/backend/port/inet_aton.c
+++ b/src/backend/port/inet_aton.c
@@ -1,4 +1,4 @@
-/* $Id: inet_aton.c,v 1.15 1998/09/01 03:24:28 momjian Exp $
+/* $Id: inet_aton.c,v 1.16 1999/02/07 22:07:02 tgl Exp $
*
* This inet_aton() function was taken from the GNU C library and
* incorporated into Postgres for those systems which do not have this
@@ -42,6 +42,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. */
+#include "config.h"
+
#include <sys/types.h>
#include <netinet/in.h>
#include <ctype.h>