40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
#ifndef HEADERS_SLIM_H
|
|
#define HEADERS_SLIM_H
|
|
|
|
/* -------------------------------------------------------------------
|
|
* headers_slim.h
|
|
* by Mark Gates <mgates@nlanr.net>
|
|
* Copyright 1999, Board of Trustees of the University of Illinois.
|
|
* $Id: headers_slim.h,v 1.1.1.1 2001/12/12 23:37:48 jdugan Exp $
|
|
* -------------------------------------------------------------------
|
|
* headers
|
|
*
|
|
* Most system headers required by iperf.
|
|
* This is a subset of lib/headers.h, to be used only while running
|
|
* configure. It excludes things conditional on having _already_
|
|
* run configure, and Win32 stuff.
|
|
* ------------------------------------------------------------------- */
|
|
|
|
/* standard C headers */
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <math.h>
|
|
|
|
/* unix headers */
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/time.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <netdb.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/tcp.h>
|
|
#include <arpa/inet.h> /* netinet/in.h must be before this on SunOS */
|
|
|
|
#endif /* HEADERS_SLIM_H */
|