mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05: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;
|
|
}
|