blob: 3a6e598e28ff916434021b256d0f2196329a4554 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- main.c.orig 2025-07-30 19:54:07 UTC
+++ main.c
@@ -302,7 +302,11 @@ openat_retry(const int dfd, const char *const path, in
if (fd >= 0 || errno != EINTR) {
return fd;
} else {
+#ifdef __powerpc__
+ return openat_retry(dfd, path, flags, mode);
+#else
__attribute__((musttail)) return openat_retry(dfd, path, flags, mode);
+#endif
}
}
|