mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
13 lines
309 B
C
13 lines
309 B
C
/* $Id: inet_ntop.h,v 1.4 2001/08/09 00:56:53 mouring Exp $ */
|
|
|
|
#ifndef _BSD_INET_NTOP_H
|
|
#define _BSD_INET_NTOP_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_INET_NTOP_H */
|