source: trunk/src/emx/include/ftw.h@ 2164

Last change on this file since 2164 was 2164, checked in by bird, 20 years ago

ftw.h should include sys/stat.h

  • Property cvs2svn:cvs-rev set to 1.3
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 398 bytes
Line 
1/* $Id: */
2/** @file
3 * EMX
4 */
5
6#ifndef _FTW_H
7#define _FTW_H
8
9#if defined (__cplusplus)
10extern "C" {
11#endif
12
13#include <sys/stat.h>
14
15#define FTW_F 0
16#define FTW_D 1
17#define FTW_DNR 2
18#define FTW_NS 3
19
20int ftw (__const__ char *,
21 int (*)(__const__ char *, __const__ struct stat *, int),
22 int);
23
24#if defined (__cplusplus)
25}
26#endif
27
28#endif /* not _FTW_H */
Note: See TracBrowser for help on using the repository browser.