Mercurial > hg > toybox
view lib/net.c @ 1324:3191aa9490aa draft
strings - print the strings in the file.
author | Ashwini Sharma <ak.ashwini1981@gmail.com> |
---|---|
date | Thu, 29 May 2014 08:18:50 -0500 |
parents | e11684e3bbc5 |
children |
line wrap: on
line source
#include "toys.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; }