mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-28 07:14:31 +08:00
11fa2cc383
- (djm) Fix strerror replacement for old SunOS. Based on patch from Charles Levert <charles@comm.polymtl.ca> - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4 implementation.
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 */
|