android_external_toybox/lib/net.c

11 lines
207 B
C

#include "toys.h"
#include "toynet.h"
int xsocket(int domain, int type, int protocol)
{
int fd = socket(domain, type, protocol);
if (fd < 0) perror_exit("socket %x %x", type, protocol);
return fd;
}