mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
13 lines
259 B
C
Vendored
13 lines
259 B
C
Vendored
#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);
|