mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 11:40:30 +00:00
12 lines
178 B
C
12 lines
178 B
C
|
|
#include "socketnix.h"
|
|
|
|
int inet_pton(int af, const char *src, void *dst)
|
|
{
|
|
if (af != AF_INET) {
|
|
errno = EAFNOSUPPORT;
|
|
return -1;
|
|
}
|
|
return inet_aton (src, dst);
|
|
}
|