sl@0
|
1 |
/*
|
sl@0
|
2 |
* dirent.h --
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* This file is a replacement for <dirent.h> in systems that
|
sl@0
|
5 |
* support the old BSD-style <sys/dir.h> with a "struct direct".
|
sl@0
|
6 |
*
|
sl@0
|
7 |
* Copyright (c) 1991 The Regents of the University of California.
|
sl@0
|
8 |
* Copyright (c) 1994 Sun Microsystems, Inc.
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* See the file "license.terms" for information on usage and redistribution
|
sl@0
|
11 |
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* RCS: @(#) $Id: dirent.h,v 1.2 1998/09/14 18:39:44 stanton Exp $
|
sl@0
|
14 |
*/
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef _DIRENT
|
sl@0
|
17 |
#define _DIRENT
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <sys/dir.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
#define dirent direct
|
sl@0
|
22 |
|
sl@0
|
23 |
#endif /* _DIRENT */
|