diff options
author | jmallett <jmallett@FreeBSD.org> | 2004-03-14 06:43:34 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2004-03-14 06:43:34 +0000 |
commit | f12ed405d13a8799736ce8347eb2442e49fa7fd8 (patch) | |
tree | f2c3eca9aa1949ec61715776f1adb7a0ecc62535 /usr.bin/finger/lprint.c | |
parent | 36be86fb0ab127fdca2afe0978f4d07102f731e0 (diff) | |
download | FreeBSD-src-f12ed405d13a8799736ce8347eb2442e49fa7fd8.zip FreeBSD-src-f12ed405d13a8799736ce8347eb2442e49fa7fd8.tar.gz |
Add multiple inclusion guards. Mostly this is for extern.h, which was
included twice by lprint.c, which included both finger.h and extern.h.
finger.h, in turn, includes extern.h. The redundant include of extern.h
was removed from lprint.c, as part of this change, but the include guards
were added anyway out of spite.
Diffstat (limited to 'usr.bin/finger/lprint.c')
-rw-r--r-- | usr.bin/finger/lprint.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/finger/lprint.c b/usr.bin/finger/lprint.c index d74b21e..848bbee 100644 --- a/usr.bin/finger/lprint.c +++ b/usr.bin/finger/lprint.c @@ -60,7 +60,6 @@ __FBSDID("$FreeBSD$"); #include <utmp.h> #include "finger.h" #include "pathnames.h" -#include "extern.h" #define LINE_LEN 80 #define TAB_LEN 8 /* 8 spaces between tabs */ |