diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-29 22:33:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-29 22:33:10 +0000 |
commit | 83096ae833f63e5d2ba009651f6b626c3c1878a4 (patch) | |
tree | d0b988f9de08b110d75de33a07af26c1c0eee04a /newlib | |
parent | 588f16bb29c8699f35dcb9c844fa6ba622e3e2c3 (diff) | |
download | newlib-83096ae833f63e5d2ba009651f6b626c3c1878a4.zip newlib-83096ae833f63e5d2ba009651f6b626c3c1878a4.tar.gz newlib-83096ae833f63e5d2ba009651f6b626c3c1878a4.tar.bz2 |
2002-04-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/io64.c (fstat64, lstat64): New syscalls added.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/sys/linux/io64.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 6d9876c..af41985 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2002-04-29 Jeff Johnston <jjohnstn@redhat.com> + + * libc/sys/linux/io64.c (fstat64, lstat64): New syscalls added. + 2002-04-29 Jonathan Larmour <jlarmour@redhat.com> * libc/sys/arm/syscalls.c (_rename): New function. Just a stub. diff --git a/newlib/libc/sys/linux/io64.c b/newlib/libc/sys/linux/io64.c index c18854b..ea40dcb 100644 --- a/newlib/libc/sys/linux/io64.c +++ b/newlib/libc/sys/linux/io64.c @@ -14,6 +14,8 @@ #include <sys/ioctl.h> #include <machine/syscall.h> +_syscall2(int,fstat64,int,fd,struct stat64 *,st) +_syscall2(int,lstat64,const char *,name,struct stat64 *,st) _syscall2(int,stat64,const char *,name,struct stat64 *,st) static _syscall5(void,_llseek,int,fd,off_t,hi,off_t,lo,loff_t *,pos,int,whence) |