fix for new select & clean up headers
This commit is contained in:
parent
cda0b34784
commit
7d313cbd4c
|
@ -32,13 +32,10 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char sccsid[] = "@(#)iso.c 5.6 (Berkeley) 4/27/91";
|
||||
/* from: static char sccsid[] = "@(#)iso.c 5.6 (Berkeley) 4/27/91"; */
|
||||
static char rcsid = "$Id: iso.c,v 1.2 1993/05/20 10:40:48 cgd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
* $Header: /cvsroot/src/usr.bin/netstat/Attic/iso.c,v 1.1 1993/03/21 18:04:42 cgd Exp $
|
||||
* $Source: /cvsroot/src/usr.bin/netstat/Attic/iso.c,v $
|
||||
*/
|
||||
/*******************************************************************************
|
||||
Copyright IBM Corporation 1987
|
||||
|
||||
|
@ -67,6 +64,7 @@ SOFTWARE.
|
|||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/mbuf.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/domain.h>
|
||||
|
|
|
@ -32,10 +32,12 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char sccsid[] = "@(#)ns.c 5.13 (Berkeley) 3/1/91";
|
||||
/* from: static char sccsid[] = "@(#)ns.c 5.13 (Berkeley) 3/1/91"; */
|
||||
static char rcsid = "$Id: ns.c,v 1.2 1993/05/20 10:40:57 cgd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/socketvar.h>
|
||||
#include <sys/mbuf.h>
|
||||
|
|
|
@ -32,13 +32,15 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char sccsid[] = "@(#)unix.c 5.11 (Berkeley) 7/1/91";
|
||||
/* from: static char sccsid[] = "@(#)unix.c 5.11 (Berkeley) 7/1/91"; */
|
||||
static char rcsid = "$Id: unix.c,v 1.3 1993/05/20 10:41:04 cgd Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
/*
|
||||
* Display protocol blocks in the unix domain.
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/protosw.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/socketvar.h>
|
||||
|
|
Loading…
Reference in New Issue