view toynet.h @ 427:827ad88a3456

Cleaning out one more old gpl notice that no longer applies after the switch to BSD in november.
author Rob Landley <rob@landley.net>
date Sat, 04 Feb 2012 10:39:17 -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>