Home | History | Annotate | Download | only in sysdeps

Lines Matching defs:stat

19 #include <sys/stat.h>
24 // stat is broken on Win32: stat on a path with a trailing slash or backslash will always fail with
28 // We later define a macro mapping 'stat' to 'adb_stat'. This causes:
29 // struct stat s;
30 // stat(filename, &s);
35 // 'struct stat'. Note that this definition of 'struct adb_stat' uses the
36 // *current* macro definition of stat, so it may actually be inheriting from
38 struct adb_stat : public stat {};
40 #undef stat
41 #define stat adb_stat