mailing list of musl libc
 help / color / mirror / code / Atom feed
acfbd3cc522a2fbea6fc448b7f9fe1a9ff2cc13e blob 484 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#include "time32.h"
#include <sys/stat.h>

struct stat32;

int __fxstat64(int ver, int fd, struct stat32 *buf)
{
	return __fstat_time32(fd, buf);
}

int __fxstatat64(int ver, int fd, const char *path, struct stat32 *buf, int flag)
{
	return __fstatat_time32(fd, path, buf, flag);
}

int __lxstat64(int ver, const char *path, struct stat32 *buf)
{
	return __lstat_time32(path, buf);
}

int __xstat64(int ver, const char *path, struct stat32 *buf)
{
	return __stat_time32(path, buf);
}
debug log:

solving acfbd3cc ...
found acfbd3cc in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).