svn commit: trunk/uClibc/libc/sysdeps/linux/common

sjhill at uclibc.org sjhill at uclibc.org
Thu Mar 16 03:07:31 UTC 2006


Author: sjhill
Date: 2006-03-15 19:07:29 -0800 (Wed, 15 Mar 2006)
New Revision: 14544

Log:
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. $!#@$!#@


Modified:
   trunk/uClibc/libc/sysdeps/linux/common/utime.c


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/utime.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/utime.c	2006-03-15 17:09:56 UTC (rev 14543)
+++ trunk/uClibc/libc/sysdeps/linux/common/utime.c	2006-03-16 03:07:29 UTC (rev 14544)
@@ -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>




More information about the uClibc-cvs mailing list