mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-23 18:23:25 +08:00
11 lines
207 B
C
11 lines
207 B
C
#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 */
|