view toynet.h @ 695:d2dde3d0ef05

Make ls default to -C if no option specified and it's outputting to a tty.
author Rob Landley <rob@landley.net>
date Thu, 15 Nov 2012 16:15:51 -0600
parents e864c5ed1d25
children 4dcd5decb4fd
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 <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <poll.h>