From 6b557580fe111ad20a962c84a5887d90045a3237 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 3 Mar 2025 13:25:52 +0900 Subject: [PATCH] missing_syscall: drop unnecessary definition of AT_EMPTY_PATH It is defined since glibc-2.14 (46998f745736b3c8df5901a27b6c2a19f5cc5e98), and the value was never changed. --- src/basic/missing_syscall.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/basic/missing_syscall.h b/src/basic/missing_syscall.h index 6bf9c0d5ae4..ebdb1c30b95 100644 --- a/src/basic/missing_syscall.h +++ b/src/basic/missing_syscall.h @@ -191,8 +191,6 @@ static inline int missing_execveat(int dirfd, const char *pathname, return syscall(__NR_execveat, dirfd, pathname, argv, envp, flags); } -# undef AT_EMPTY_PATH -# define AT_EMPTY_PATH 0x1000 # define execveat missing_execveat #endif -- 2.47.3