aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-09-24 08:08:11 +0000
committerBruce Evans <bde@FreeBSD.org>1996-09-24 08:08:11 +0000
commit0c8ea4d48c74cfc48c410d6c466f191a49f6afbd (patch)
treea7dcc2bf16ed815097f05a03a82f3f704338c35d /games
parent251d6f360e61546091814671dea25c6e1965db8b (diff)
downloadsrc-0c8ea4d48c74cfc48c410d6c466f191a49f6afbd.tar.gz
src-0c8ea4d48c74cfc48c410d6c466f191a49f6afbd.zip
Eliminated includes of the "temporary" backwards compatibility header
<sys/dir.h> in applications. Maintained existing (inadequate) ifdefs for dir.h vs dirent.h in libdialog, amd and rarpd, but didn't add any new ones.
Notes
Notes: svn path=/head/; revision=18485
Diffstat (limited to 'games')
-rw-r--r--games/fortune/fortune/fortune.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c
index 05dcb0556c17..e993a1be2bb4 100644
--- a/games/fortune/fortune/fortune.c
+++ b/games/fortune/fortune/fortune.c
@@ -46,8 +46,8 @@ static const char sccsid[] = "@(#)fortune.c 8.1 (Berkeley) 5/31/93";
# include <sys/param.h>
# include <sys/stat.h>
-# include <sys/dir.h>
+# include <dirent.h>
# include <fcntl.h>
# include <assert.h>
# include <unistd.h>
@@ -693,11 +693,7 @@ add_dir(fp)
register FILEDESC *fp;
{
register DIR *dir;
-#ifdef SYSV
- register struct dirent *dirent; /* NIH, of course! */
-#else
- register struct direct *dirent;
-#endif
+ register struct dirent *dirent;
auto FILEDESC *tailp;
auto char *name;