mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 03:04:16 +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;
|
|
}
|