projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added MACHINES to EXTRA_DIST so that it gets put in the distribution.
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
h
/
local.h
1
/* local.h - fine the -lndir include file */
2
/* @(#)$Id: local.h,v 1.3 1992/02/06 17:37:44 jromine Exp $ */
3
4
#ifndef BSD42
5
#include <sys/types.h>
6
#else /* BSD42 */
7
#include <sys/param.h>
8
#endif
9
10
#ifndef BSD42
11
#ifndef NDIR
12
#ifndef SYS5DIR
13
#include <dir.h> /* last choice */
14
#else /* SYS5DIR */
15
#include <dirent.h>
16
#endif
17
#else /* NDIR */
18
#include <ndir.h>
19
#endif
20
#else /* BSD42 */
21
#include <sys/dir.h>
22
#endif
23
24
#include <sys/stat.h>