瀏覽代碼

fstatat: Use newfstatat only for 64-bit operations

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Markos Chandras 12 年之前
父節點
當前提交
758a4fe9ce
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      libc/sysdeps/linux/common/fstatat.c

+ 1 - 1
libc/sysdeps/linux/common/fstatat.c

@@ -11,7 +11,7 @@
 #include "xstatconv.h"
 #include "xstatconv.h"
 
 
 /* 64bit ports tend to favor newfstatat() */
 /* 64bit ports tend to favor newfstatat() */
-#ifdef __NR_newfstatat
+#if __WORDSIZE == 64 && defined __NR_newfstatat
 # define __NR_fstatat64 __NR_newfstatat
 # define __NR_fstatat64 __NR_newfstatat
 #endif
 #endif