mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-22 01:50:16 +00:00
2db5371d30
(needed by openbsd-compat/fake-getaddrinfo.c)
13 lines
267 B
C
13 lines
267 B
C
/* $Id: inet_aton.h,v 1.4 2001/07/16 02:07:51 tim Exp $ */
|
|
|
|
#ifndef _BSD_INET_ATON_H
|
|
#define _BSD_INET_ATON_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef HAVE_INET_ATON
|
|
int inet_aton(const char *cp, struct in_addr *addr);
|
|
#endif /* HAVE_INET_ATON */
|
|
|
|
#endif /* _BSD_INET_ATON_H */
|