2008-11-28 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/inode.c: Include <dirent.h> instead of <linux/dirent.h>. * libc/sys/linux/io64.c: Add weak alias for _stat64.
This commit is contained in:
parent
d92ed436e3
commit
3ba3b001a2
|
@ -1,3 +1,9 @@
|
|||
2008-11-28 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/sys/linux/inode.c: Include <dirent.h> instead of
|
||||
<linux/dirent.h>.
|
||||
* libc/sys/linux/io64.c: Add weak alias for _stat64.
|
||||
|
||||
2008-11-27 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libc/posix/telldir.c: Use #if !defined() instead of #ifndef
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/utime.h>
|
||||
#include <linux/dirent.h>
|
||||
#include <dirent.h>
|
||||
#include <machine/syscall.h>
|
||||
|
||||
#define _LIBC 1
|
||||
|
|
|
@ -64,5 +64,6 @@ weak_alias(__libc_open64,open64);
|
|||
weak_alias(__libc_open64,_open64);
|
||||
weak_alias(__libc_open64,__open64);
|
||||
weak_alias(__libc_fstat64,_fstat64);
|
||||
weak_alias(__libc_stat64,_stat64);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue