view lib/net.c @ 930:39ac9e0ad6ad

Generate FLAG_longopt macros for --longopts with no corresponding short option.
author Rob Landley <rob@landley.net>
date Sat, 22 Jun 2013 14:23:06 -0500
parents aca8323e2690
children e11684e3bbc5
line wrap: on
line source

#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;
}