From: Dmitry V. Levin Date: Mon, 29 Dec 2014 03:08:53 +0000 (+0000) Subject: sparc: drop _STAT64_VER support X-Git-Tag: v4.10~266 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e6219fbdb1be99514e11010c48949597c2f3920d;p=strace sparc: drop _STAT64_VER support Starting with commit v4.6-240-g5afdf12, nobody compiles this non-Linux code. * file.c [SPARC || SPARC64] (sys_xstat, sys_fxstat): Remove _STAT64_VER code. --- diff --git a/file.c b/file.c index d105352b..51c30784 100644 --- a/file.c +++ b/file.c @@ -879,11 +879,6 @@ sys_xstat(struct tcb *tcp) printpath(tcp, tcp->u_arg[1]); tprints(", "); } else { -# ifdef _STAT64_VER - if (tcp->u_arg[0] == _STAT64_VER) - printstat64(tcp, tcp->u_arg[2]); - else -# endif printstat(tcp, tcp->u_arg[2]); } return 0; @@ -895,11 +890,6 @@ sys_fxstat(struct tcb *tcp) if (entering(tcp)) tprintf("%ld, %ld, ", tcp->u_arg[0], tcp->u_arg[1]); else { -# ifdef _STAT64_VER - if (tcp->u_arg[0] == _STAT64_VER) - printstat64(tcp, tcp->u_arg[2]); - else -# endif printstat(tcp, tcp->u_arg[2]); } return 0;