diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1996-12-10 21:25:42 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1996-12-10 21:25:42 +0000 |
commit | 2600973097e27ca7bd8e551ee1d3f95c273e2057 (patch) | |
tree | 1802594ccd460af6e8710e6767d909ac3b4bb8c8 /sbin | |
parent | 662f33aaf61ab20ccb0f1d679c852574a3327536 (diff) | |
download | src-2600973097e27ca7bd8e551ee1d3f95c273e2057.tar.gz src-2600973097e27ca7bd8e551ee1d3f95c273e2057.zip |
Fix if.h lossage. I could have sworn I already fixed this one.
Notes
Notes:
svn path=/head/; revision=20295
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/slattach/slattach.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/slattach/slattach.c b/sbin/slattach/slattach.c index b500a4b04e6a..9ab7b31cce94 100644 --- a/sbin/slattach/slattach.c +++ b/sbin/slattach/slattach.c @@ -42,13 +42,14 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)slattach.c 4.6 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id$"; +static char rcsid[] = "$Id: slattach.c,v 1.21 1996/12/10 17:07:44 wollman Exp $"; #endif /* not lint */ #include <sys/param.h> +#include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> -#include <sys/types.h> +#include <sys/time.h> #include <fcntl.h> #include <netdb.h> |