fstat.c\stat\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stat/fstat.c
blob: fd28b8ac405a5601bbfa6cdf5bb562f2f918053b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#define _BSD_SOURCE
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include "syscall.h"
int __fstat(int fd, struct stat *st)
{
	if (fd<0) return __syscall_ret(-EBADF);
	return __fstatat(fd, "", st, AT_EMPTY_PATH);
}
weak_alias(__fstat, fstat);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 19:18:39 +0000

AltStyle によって変換されたページ (->オリジナル) /