File: xstat.h

package info (click to toggle)
bibclean 2.11.4-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,204 kB
  • ctags: 1,545
  • sloc: ansic: 10,711; makefile: 817; perl: 65; sh: 40; awk: 27; sed: 6
file content (16 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef XSTAT_H_DEFINED_
#define XSTAT_H_DEFINED_

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>		/* needed on MIPS RC6280 RISCos systems */
#endif

#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#else
#ifdef HAVE_STAT_H
#include <stat.h>
#endif
#endif

#endif /* XSTAT_H_DEFINED_ */