Commit 9e41af2e authored by Bryan Henderson's avatar Bryan Henderson

Add inet_aton() prototype.

parent 3677e86f
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * 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); ...@@ -40,4 +40,11 @@ extern void init_address_fixup(void);
/* strdup.c: strdup() is not part of libc on Ultrix */ /* strdup.c: strdup() is not part of libc on Ultrix */
extern char* strdup(char const*); 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 */ #endif /* PORT_PORTOS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment