blob: 62f2ecd796850ec081390ed394da3e16167eca05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $Id: inet_ntop.h,v 1.1.1.1 2001/09/19 14:44:59 stealth Exp $ */
#ifndef _BSD_RRESVPORT_H
#define _BSD_RRESVPORT_H
#include "config.h"
#ifndef HAVE_INET_NTOP
const char *
inet_ntop(int af, const void *src, char *dst, size_t size);
#endif /* !HAVE_INET_NTOP */
#endif /* _BSD_RRESVPORT_H */
|