* largefile_wrappers.h (struct_stat): Rename to strace_stat_t.
* strace.c (startup_child): Rename struct_stat to strace_stat_t.
* util.c (printdev): Likewise.
# else
# define fopen_stream fopen
# endif
-# define struct_stat struct stat64
+# define strace_stat_t struct stat64
# define stat_file stat64
# define struct_dirent struct dirent64
# define read_dir readdir64
# else
# define open_file open
# define fopen_stream fopen
-# define struct_stat struct stat
+# define strace_stat_t struct stat
# define stat_file stat
# define struct_dirent struct dirent
# define read_dir readdir
static void
startup_child(char **argv)
{
- struct_stat statbuf;
+ strace_stat_t statbuf;
const char *filename;
size_t filename_len;
char pathname[PATH_MAX];
static bool
printdev(struct tcb *tcp, int fd, const char *path)
{
- struct_stat st;
+ strace_stat_t st;
if (path[0] != '/')
return false;