]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * dirent.h -- | |
3 | * | |
4 | * This file is a replacement for <dirent.h> in systems that | |
5 | * support the old BSD-style <sys/dir.h> with a "struct direct". | |
6 | * | |
7 | * Copyright 1991 Regents of the University of California | |
8 | * Permission to use, copy, modify, and distribute this | |
9 | * software and its documentation for any purpose and without | |
10 | * fee is hereby granted, provided that this copyright | |
11 | * notice appears in all copies. The University of California | |
12 | * makes no representations about the suitability of this | |
13 | * software for any purpose. It is provided "as is" without | |
14 | * express or implied warranty. | |
15 | * | |
16 | * $Header: /sprite/src/lib/tcl/compat/RCS/dirent.h,v 1.1 91/09/19 16:22:06 ouster Exp $ SPRITE (Berkeley) | |
17 | */ | |
18 | ||
19 | #ifndef _DIRENT | |
20 | #define _DIRENT | |
21 | ||
22 | #include <sys/dir.h> | |
23 | ||
24 | #define dirent direct | |
25 | ||
26 | #endif /* _DIRENT */ |