From: Keith Bostic Date: Mon, 25 Jun 1990 14:27:34 +0000 (-0800) Subject: don't need pathnames.h, just paths.h X-Git-Tag: BSD-4_3_Reno-Snapshot-Development~1581 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/8f2938dbbc73790410982196da7d7fa140bdd7fd don't need pathnames.h, just paths.h SCCS-vsn: usr.bin/finger/finger.c 5.21 SCCS-vsn: usr.bin/finger/lprint.c 5.12 SCCS-vsn: usr.bin/finger/util.c 5.13 --- diff --git a/usr/src/usr.bin/finger/finger.c b/usr/src/usr.bin/finger/finger.c index 170e05fab5..7a0132741f 100644 --- a/usr/src/usr.bin/finger/finger.c +++ b/usr/src/usr.bin/finger/finger.c @@ -12,7 +12,7 @@ char copyright[] = #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)finger.c 5.20 (Berkeley) %G%"; +static char sccsid[] = "@(#)finger.c 5.21 (Berkeley) %G%"; #endif /* not lint */ /* @@ -32,7 +32,6 @@ static char sccsid[] = "@(#)finger.c 5.20 (Berkeley) %G%"; #include #include #include "finger.h" -#include "pathnames.h" time_t now; int lflag, sflag, mflag, pplan; diff --git a/usr/src/usr.bin/finger/lprint.c b/usr/src/usr.bin/finger/lprint.c index 77268531ee..61a94bfc44 100644 --- a/usr/src/usr.bin/finger/lprint.c +++ b/usr/src/usr.bin/finger/lprint.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)lprint.c 5.11 (Berkeley) %G%"; +static char sccsid[] = "@(#)lprint.c 5.12 (Berkeley) %G%"; #endif /* not lint */ #include @@ -16,8 +16,8 @@ static char sccsid[] = "@(#)lprint.c 5.11 (Berkeley) %G%"; #include #include #include +#include #include "finger.h" -#include "pathnames.h" #define LINE_LEN 80 #define TAB_LEN 8 /* 8 spaces between tabs */ diff --git a/usr/src/usr.bin/finger/util.c b/usr/src/usr.bin/finger/util.c index 520402a18f..2200815349 100644 --- a/usr/src/usr.bin/finger/util.c +++ b/usr/src/usr.bin/finger/util.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)util.c 5.12 (Berkeley) %G%"; +static char sccsid[] = "@(#)util.c 5.13 (Berkeley) %G%"; #endif /* not lint */ #include @@ -15,8 +15,8 @@ static char sccsid[] = "@(#)util.c 5.12 (Berkeley) %G%"; #include #include #include +#include #include "finger.h" -#include "pathnames.h" find_idle_and_ttywrite(w) register WHERE *w;