aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2011-08-07 21:50:30 +0200
committermaximilian attems <max@stro.at>2011-08-08 09:23:00 +0200
commit96aeff7a7fedc7e1ff16a9d6e6cf80a6480f7cd0 (patch)
treee1f6b1a9e9c097b4e2e27aa1152e34277934eb4f
parent1de72795caeb03b875ed91a3bf3a03fa8805145e (diff)
downloadklibc-96aeff7a7fedc7e1ff16a9d6e6cf80a6480f7cd0.tar.gz
[klibc] Fix fstatat() family syscalls
The XXX is right, it was wrong. :D Keep the XXX, as I'm unsure about the proper newfstatat() semantics. Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--usr/klibc/SYSCALLS.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/klibc/SYSCALLS.def b/usr/klibc/SYSCALLS.def
index bfd04c119312a..6ed6bdf228320 100644
--- a/usr/klibc/SYSCALLS.def
+++ b/usr/klibc/SYSCALLS.def
@@ -137,7 +137,7 @@ int readlink(const char *, char *, size_t);
<ppc64> int lstat::lstat(const char *, struct stat *);
<ppc64> int fstat::fstat(int, struct stat *);
/* XXX: Is this right?! */
-<?> int fstatat64,newstatat,fstatat::fstatat(int, const char *, struct stat *, int);
+<?> int fstatat64,newfstatat,fstatat::fstatat(int, const char *, struct stat *, int);
int getdents64,getdents::getdents(unsigned int, struct dirent *, unsigned int);
int chown32,chown::chown(const char *, uid_t, gid_t);
int fchown32,fchown::fchown(int, uid_t, gid_t);