in misc/, not posix/.
Reported by David S. Miller <davem@davemloft.net>.
2006-02-23 Jakub Jelinek <jakub@redhat.com>
* posix/sched_yield.c (__sched_yield): Add libc_hidden_def.
* sysdeps/mach/sched_yield.c (__sched_yield): Likewise.
+2006-02-23 Roland McGrath <roland@redhat.com>
+
+ * sysdeps/unix/sysv/linux/ftruncate64.c: Find generic implementation
+ in misc/, not posix/.
+ Reported by David S. Miller <davem@davemloft.net>.
+
+2006-02-23 Jakub Jelinek <jakub@redhat.com>
+
+ * posix/sched_yield.c (__sched_yield): Add libc_hidden_def.
+ * sysdeps/mach/sched_yield.c (__sched_yield): Likewise.
+
2006-02-22 Roland McGrath <roland@redhat.com>
* po/libc.pot: Regenerated.
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
return -1;
}
stub_warning (sched_yield)
+libc_hidden_def (__sched_yield)
weak_alias (__sched_yield, sched_yield)
#include <stub-tag.h>
/* sched_yield -- yield the processor. Mach version.
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2006 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
(void) __swtch ();
return 0;
}
+libc_hidden_def (__sched_yield)
weak_alias (__sched_yield, sched_yield)
#else
/* Use the generic implementation. */
-# include <posix/ftruncate64.c>
+# include <misc/ftruncate64.c>
#endif