summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/xstatconv.h
Commit message (Collapse)AuthorAgeFilesLines
* fstatat: fix up behavior on 32/64 bit hostsMike Frysinger2009-09-061-0/+1
| | | | | | | | | | | | The fstatat() syscall is a little funky in that it sometimes changes name between 32 and 64 bit hosts, but it should always operate on a 64bit stat structure. So for the fstatat() function, make sure we convert it from a 64bit kstat to a 32bit stat. Along these lines, we need to restore the __xstat32_conv() function. Reported-by: Timo Teräs <timo.teras@iki.fi> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* hide __xstatX_convPeter S. Mazinger2005-12-091-2/+2
|
* Split up syscalls.c, since it had grown to be quite large and ugly.Eric Andersen2004-01-211-2/+2
| | | | -Erik
* Patch from Stefan Allius to fix the build whenEric Andersen2003-01-281-0/+2
| | | | large file support is disabled
* I thought it would be smaller to inline since these funcs are small.Eric Andersen2003-01-241-0/+30
Well, not inlining saves 300 bytes, so do that instead. -Erik