diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-07-18 11:29:13 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-07-18 11:29:13 +0000 |
commit | 864a72134ac09aabb0429287618cd3ce5de46df5 (patch) | |
tree | 78f80e363723d6e9471b4a7c228e5f3fdf8d4e81 /lib/libskey/skeylogin.c | |
parent | 3224acf9b2c9615e71e5e09cfa5c1bddc95c62c8 (diff) | |
download | FreeBSD-src-864a72134ac09aabb0429287618cd3ce5de46df5.zip FreeBSD-src-864a72134ac09aabb0429287618cd3ce5de46df5.tar.gz |
Fix header inclusions in preparation for a fix for PR 19886.
The CVS Id tag FreeBSD was added to satisfy commit_prep.pl.
Diffstat (limited to 'lib/libskey/skeylogin.c')
-rw-r--r-- | lib/libskey/skeylogin.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libskey/skeylogin.c b/lib/libskey/skeylogin.c index 75e6245..d0564c4 100644 --- a/lib/libskey/skeylogin.c +++ b/lib/libskey/skeylogin.c @@ -3,6 +3,8 @@ * * Mink is the former name of the S/KEY authentication system. * Many references for mink may still be found in this program. + * + * $FreeBSD$ */ #include <sys/param.h> @@ -10,14 +12,11 @@ #include <sys/time.h> #include <sys/resource.h> - +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <sys/types.h> -#include <sys/stat.h> #include <time.h> -#include <errno.h> #include "skey.h" #include "pathnames.h" |