diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-16 06:32:17 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-16 06:32:17 +0000 |
commit | 9e41af2e74966897372013d9e1b0755800a668b6 (patch) | |
tree | bdda94cf2e28ad785f44bad107b903023d2bb72c | |
parent | 3677e86f7f82c2a7c5dd3ecfc50ba6432637cb7b (diff) | |
download | postgresql-9e41af2e74966897372013d9e1b0755800a668b6.tar.gz postgresql-9e41af2e74966897372013d9e1b0755800a668b6.zip |
Add inet_aton() prototype.
-rw-r--r-- | src/backend/port/ultrix4/port-protos.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/backend/port/ultrix4/port-protos.h b/src/backend/port/ultrix4/port-protos.h index c821601fbd0..dbcf9e98b6e 100644 --- a/src/backend/port/ultrix4/port-protos.h +++ b/src/backend/port/ultrix4/port-protos.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: port-protos.h,v 1.3 1996/11/27 08:15:30 bryanh Exp $ + * $Id: port-protos.h,v 1.4 1997/01/16 06:32:17 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -40,4 +40,11 @@ extern void init_address_fixup(void); /* strdup.c: strdup() is not part of libc on Ultrix */ extern char* strdup(char const*); +/* inet_aton() is not part of libc on Ultrix. The following is from + backend/port/inet_aton.h +*/ + +int +inet_aton(const char *cp, struct in_addr *addr); + #endif /* PORT_PORTOS_H */ |