view toynet.h @ 346:d0bf1df83c04

Re-wordwrap and reorder the .config->config.h sed script. (No real changes, just one command/line in a clearer order.)
author Rob Landley <rob@landley.net>
date Fri, 30 Jan 2009 16:10:55 -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>