소스 검색

Do NOT hide 'utime'. When building binutils for the target using buildroot
it was undefined. How about when you finish playing hide and seek with
symbols you do a complete buildroot build and see if everything really
works. $!#@$!#@

"Steven J. Hill" 18 년 전
부모
커밋
ecee0e19a8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libc/sysdeps/linux/common/utime.c

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

@@ -13,7 +13,7 @@
 libc_hidden_proto(utime)
 
 #ifdef __NR_utime
-attribute_hidden _syscall2(int, utime, const char *, file, const struct utimbuf *, times);
+_syscall2(int, utime, const char *, file, const struct utimbuf *, times);
 #else
 #include <stdlib.h>
 #include <sys/time.h>