mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-04 18:27:25 +00:00
77 lines
2.2 KiB
C
77 lines
2.2 KiB
C
|
|
||
|
/*
|
||
|
* Copyright (c) 2018 Chris Jones <jonesc@macports.org>
|
||
|
*
|
||
|
* Permission to use, copy, modify, and distribute this software for any
|
||
|
* purpose with or without fee is hereby granted, provided that the above
|
||
|
* copyright notice and this permission notice appear in all copies.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#ifndef _MACPORTS_SYSSTAT_H_
|
||
|
#define _MACPORTS_SYSSTAT_H_
|
||
|
|
||
|
/* MP support header */
|
||
|
#include "MacportsLegacySupport.h"
|
||
|
|
||
|
/* Include the primary system stat.h */
|
||
|
#include_next <sys/stat.h>
|
||
|
|
||
|
#if __MP_LEGACY_SUPPORT_UTIMENSAT__
|
||
|
|
||
|
#if !defined(UTIME_NOW)
|
||
|
#define UTIME_NOW -1
|
||
|
#endif
|
||
|
|
||
|
#if !defined(UTIME_OMIT)
|
||
|
#define UTIME_OMIT -2
|
||
|
#endif
|
||
|
|
||
|
__MP__BEGIN_DECLS
|
||
|
|
||
|
extern int futimens(int fd, const struct timespec _times_in[2]);
|
||
|
extern int utimensat(int fd, const char *path, const struct timespec _times_in[2], int flags);
|
||
|
|
||
|
__MP__END_DECLS
|
||
|
|
||
|
#endif /* __MP_LEGACY_SUPPORT_UTIMENSAT__ */
|
||
|
|
||
|
|
||
|
#if __MP_LEGACY_SUPPORT_ATCALLS__
|
||
|
|
||
|
__MP__BEGIN_DECLS
|
||
|
|
||
|
extern int fchmodat(int dirfd, const char *pathname, mode_t mode, int flags);
|
||
|
extern int fstatat(int dirfd, const char *pathname, struct stat *buf, int flags);
|
||
|
|
||
|
/* 64bit inode types appeared only on 10.5, and currently can't be replaced on Tiger */
|
||
|
/* due to lack of kernel support for the underlying syscalls */
|
||
|
#if !__DARWIN_ONLY_64_BIT_INO_T && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1050
|
||
|
extern int fstatat64(int dirfd, const char *pathname, struct stat64 *buf, int flags);
|
||
|
#endif
|
||
|
|
||
|
extern int mkdirat(int dirfd, const char *pathname, mode_t mode);
|
||
|
|
||
|
__MP__END_DECLS
|
||
|
|
||
|
#endif /* __MP_LEGACY_SUPPORT_ATCALLS__ */
|
||
|
|
||
|
#if __MP_LEGACY_SUPPORT_LSMOD__
|
||
|
|
||
|
__MP__BEGIN_DECLS
|
||
|
|
||
|
extern int lchmod(const char *, mode_t);
|
||
|
|
||
|
__MP__END_DECLS
|
||
|
|
||
|
#endif /* __MP_LEGACY_SUPPORT_LSMOD__ */
|
||
|
|
||
|
#endif /* _MACPORTS_SYSSTAT_H_ */
|