mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-24 06:01:19 +01:00
14 lines
209 B
C
14 lines
209 B
C
|
#include "wut_socket.h"
|
||
|
|
||
|
int
|
||
|
inet_pton(int af,
|
||
|
const char *src,
|
||
|
void *dst)
|
||
|
{
|
||
|
int rc = RPLWRAP(inet_pton)(af, src, dst);
|
||
|
if (rc < 0) {
|
||
|
errno = EAFNOSUPPORT;
|
||
|
}
|
||
|
return rc;
|
||
|
}
|