// Copyright (C) 2017 The Android Open Source Project
// SPDX-License-Identifier: BSD-2-Clause
#include <sys/stat.h>
#include "header_checks.h"
static void sys_stat_h() {
TYPE(struct stat);
#if defined (__BIONIC__) && (defined (__arm__) || defined (__i386__))
STRUCT_MEMBER(struct stat, unsigned long long , st_dev);
#else
STRUCT_MEMBER(struct stat, dev_t, st_dev);
#endif
#if defined (__BIONIC__) && !defined (__LP64__)
STRUCT_MEMBER(struct stat, unsigned long long , st_ino);
#else
STRUCT_MEMBER(struct stat, ino_t, st_ino);
#endif
#if defined (__BIONIC__) && (defined (__arm__) || defined (__i386__))
STRUCT_MEMBER(struct stat, unsigned int , st_mode);
#else
STRUCT_MEMBER(struct stat, mode_t, st_mode);
#endif
#if defined (__BIONIC__) && defined (__x86_64__)
// We can't just fix the x86_64 nlink_t because it's ABI via <fts.h>.
STRUCT_MEMBER(struct stat, unsigned long , st_nlink);
#else
STRUCT_MEMBER(struct stat, nlink_t, st_nlink);
#endif
STRUCT_MEMBER(struct stat, uid_t, st_uid);
STRUCT_MEMBER(struct stat, gid_t, st_gid);
#if defined (__BIONIC__) && (defined (__arm__) || defined (__i386__))
STRUCT_MEMBER(struct stat, unsigned long long , st_rdev);
#else
STRUCT_MEMBER(struct stat, dev_t, st_rdev);
#endif
#if defined (__BIONIC__) && !defined (__LP64__)
STRUCT_MEMBER(struct stat, long long , st_size);
#else
STRUCT_MEMBER(struct stat, off_t, st_size);
#endif
STRUCT_MEMBER(struct stat, struct timespec, st_atim);
STRUCT_MEMBER(struct stat, struct timespec, st_mtim);
STRUCT_MEMBER(struct stat, struct timespec, st_ctim);
#if defined (__BIONIC__)
#if defined (__aarch64__) || defined (__riscv)
STRUCT_MEMBER(struct stat, int , st_blksize);
#elif defined (__x86_64__)
STRUCT_MEMBER(struct stat, long , st_blksize);
#else
STRUCT_MEMBER(struct stat, unsigned long , st_blksize);
#endif
#else
STRUCT_MEMBER(struct stat, blksize_t, st_blksize);
#endif
#if defined (__BIONIC__)
#if defined (__LP64__)
STRUCT_MEMBER(struct stat, long , st_blocks);
#else
STRUCT_MEMBER(struct stat, unsigned long long , st_blocks);
#endif
#else
STRUCT_MEMBER(struct stat, blkcnt_t, st_blocks);
#endif
TYPE(blkcnt_t);
TYPE(blksize_t);
TYPE(dev_t);
TYPE(ino_t);
TYPE(mode_t);
TYPE(nlink_t);
TYPE(uid_t);
TYPE(gid_t);
TYPE(off_t);
TYPE(time_t);
TYPE(struct timespec);
#if !defined (st_atime)
#error st_atime
#endif
#if !defined (st_ctime)
#error st_ctime
#endif
#if !defined (st_mtime)
#error st_mtime
#endif
#include "sys_stat_h_mode_constants.h"
#include "sys_stat_h_file_type_test_macros.h"
#if !defined (S_TYPEISMQ)
#error S_TYPEISMQ
#endif
#if !defined (S_TYPEISSEM)
#error S_TYPEISSEM
#endif
#if !defined (S_TYPEISSHM)
#error S_TYPEISSHM
#endif
#if !defined (__BIONIC__) && !defined (__GLIBC__)
#if !defined (S_TYPEISTMO)
#error S_TYPEISTMO
#endif
#endif
MACRO(UTIME_NOW);
MACRO(UTIME_OMIT);
FUNCTION(chmod, int (*f)(const char *, mode_t));
FUNCTION(fchmod, int (*f)(int , mode_t));
FUNCTION(fchmodat, int (*f)(int , const char *, mode_t, int ));
FUNCTION(fstat, int (*f)(int , struct stat*));
FUNCTION(fstatat, int (*f)(int , const char *, struct stat*, int ));
FUNCTION(futimens, int (*f)(int , const struct timespec[2 ]));
FUNCTION(lstat, int (*f)(const char *, struct stat*));
FUNCTION(lstat, int (*f)(const char *, struct stat*));
FUNCTION(mkdir, int (*f)(const char *, mode_t));
FUNCTION(mkdirat, int (*f)(int , const char *, mode_t));
FUNCTION(mkfifo, int (*f)(const char *, mode_t));
FUNCTION(mkfifoat, int (*f)(int , const char *, mode_t));
FUNCTION(mknod, int (*f)(const char *, mode_t, dev_t));
FUNCTION(mknodat, int (*f)(int , const char *, mode_t, dev_t));
FUNCTION(stat, int (*f)(const char *, struct stat*));
FUNCTION(umask, mode_t (*f)(mode_t));
FUNCTION(utimensat, int (*f)(int , const char *, const struct timespec[2 ], int ));
}
Messung V0.5 in Prozent C=84 H=95 G=89
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-28)
¤
*© Formatika GbR, Deutschland