1 #ifndef XSTAT_H_DEFINED_
2 #define XSTAT_H_DEFINED_
3 
4 #ifdef HAVE_SYS_TYPES_H
5 #include <sys/types.h>		/* needed on MIPS RC6280 RISCos systems */
6 #endif
7 
8 #ifdef HAVE_SYS_STAT_H
9 #include <sys/stat.h>
10 #else
11 #ifdef HAVE_STAT_H
12 #include <stat.h>
13 #endif
14 #endif
15 
16 #endif /* XSTAT_H_DEFINED_ */
17