From 22fb2a07db173532462d90ad875a06254e932773 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 21 Jan 2022 22:26:28 -0500 Subject: dash: Stop this stat64 nonsense --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input.c') diff --git a/src/input.c b/src/input.c index 4167bd1..bddc3f6 100644 --- a/src/input.c +++ b/src/input.c @@ -389,7 +389,7 @@ setinputfile(const char *fname, int flags) int fd; INTOFF; - if ((fd = open64(fname, O_RDONLY)) < 0) { + if ((fd = open(fname, O_RDONLY)) < 0) { if (flags & INPUT_NOFILE_OK) goto out; exitstatus = 127; -- cgit 1.4.1