mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-13 13:44:36 +00:00
3c06f6a0b2
openbsd-compat/. And resolve all ./configure and Makefile.in issues assocated. Logic: * All OpenBSD functions should have the same filename as in the OpenBSD tree * All 'home brew' functions have bsd-* infront of them. * All 'not really implemented' functions have fake-* infront of them.
11 lines
264 B
C
11 lines
264 B
C
#ifndef _BSD_INET_NTOA_H
|
|
#define _BSD_INET_NTOA_H
|
|
|
|
#include "config.h"
|
|
|
|
#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
|
|
char *inet_ntoa(struct in_addr in);
|
|
#endif /* defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) */
|
|
|
|
#endif /* _BSD_INET_NTOA_H */
|