view toynet.h @ 882:ae7a0fd5363f

Remove leaked global path_mounts.
author Rob Landley <rob@landley.net>
date Fri, 26 Apr 2013 01:59:13 -0500
parents 4dcd5decb4fd
children aca8323e2690
line wrap: on
line source

// Included after toys.h, for network stuff.  Some build environments
// don't include network support, so we shouldn't include it unless we're
// going to build it.

#include <sys/socket.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <poll.h>