1 /* Provide a more complete sys/stat.h header file.
2 Copyright (C) 2005-2023 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake, Paul Eggert, and Jim Meyering. */
19 /* This file is supposed to be used on platforms where <sys/stat.h> is
20 incomplete. It is intended to provide definitions and prototypes
21 needed by an application. Start with what the system provides. */
24 @PRAGMA_SYSTEM_HEADER@
28 #if defined __need_system_sys_stat_h
29 /* Special invocation convention. */
31 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
34 /* Normal invocation convention. */
36 #ifndef _@GUARD_PREFIX@_SYS_STAT_H
39 May also define off_t to a 64-bit type on native Windows. */
40 #include <sys/types.h>
42 /* Get struct timespec. */
45 /* The include_next requires a split double-inclusion guard. */
46 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
48 #ifndef _@GUARD_PREFIX@_SYS_STAT_H
49 #define _@GUARD_PREFIX@_SYS_STAT_H
51 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
53 /* The definition of _GL_ARG_NONNULL is copied here. */
55 /* The definition of _GL_WARN_ON_USE is copied here. */
57 /* Before doing "#define mknod rpl_mknod" below, we need to include all
58 headers that may declare mknod(). OS/2 kLIBC declares mknod() in
59 <unistd.h>, not in <sys/stat.h>. */
64 /* Before doing "#define mkdir rpl_mkdir" below, we need to include all
65 headers that may declare mkdir(). Native Windows platforms declare mkdir
66 in <io.h> and/or <direct.h>, not in <sys/stat.h>. */
67 #if defined _WIN32 && ! defined __CYGWIN__
68 # include <io.h> /* mingw32, mingw64 */
69 # include <direct.h> /* mingw64, MSVC 9 */
72 /* Native Windows platforms declare umask() in <io.h>. */
73 #if 0 && (defined _WIN32 && ! defined __CYGWIN__)
77 /* Large File Support on native Windows. */
78 #if @WINDOWS_64_BIT_ST_SIZE@
79 # define stat _stati64
82 /* Optionally, override 'struct stat' on native Windows. */
83 #if @GNULIB_OVERRIDES_STRUCT_STAT@
87 # define stat rpl_stat
89 /* Provoke a clear link error if stat() is used as a function and
90 module 'stat' is not in use. */
91 # define stat stat_used_without_requesting_gnulib_module_stat
94 # if !GNULIB_defined_struct_stat
103 # else /* uid_t is not defined by default on native Windows. */
108 # else /* gid_t is not defined by default on native Windows. */
114 blksize_t st_blksize
;
118 # if @WINDOWS_STAT_TIMESPEC@
119 struct timespec st_atim
;
120 struct timespec st_mtim
;
121 struct timespec st_ctim
;
128 # if @WINDOWS_STAT_TIMESPEC@
129 # define st_atime st_atim.tv_sec
130 # define st_mtime st_mtim.tv_sec
131 # define st_ctime st_ctim.tv_sec
132 /* Indicator, for gnulib internal purposes. */
133 # define _GL_WINDOWS_STAT_TIMESPEC 1
135 # define GNULIB_defined_struct_stat 1
138 /* Other possible values of st_mode. */
140 # define _S_IFBLK 0x6000
143 # define _S_IFLNK 0xA000
146 # define _S_IFSOCK 0xC000
153 # define S_IFIFO _S_IFIFO
158 # define S_IFMT 0170000
161 #if STAT_MACROS_BROKEN
177 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
179 # define S_ISBLK(m) 0
185 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
187 # define S_ISCHR(m) 0
193 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
195 # define S_ISDIR(m) 0
199 #ifndef S_ISDOOR /* Solaris 2.5 and up */
200 # define S_ISDOOR(m) 0
205 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
207 # define S_ISFIFO(m) 0
213 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
215 # define S_ISLNK(m) 0
219 #ifndef S_ISMPB /* V7 */
221 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
222 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
224 # define S_ISMPB(m) 0
225 # define S_ISMPC(m) 0
229 #ifndef S_ISMPX /* AIX */
230 # define S_ISMPX(m) 0
233 #ifndef S_ISNAM /* Xenix */
235 # define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
237 # define S_ISNAM(m) 0
241 #ifndef S_ISNWK /* HP/UX */
243 # define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
245 # define S_ISNWK(m) 0
249 #ifndef S_ISPORT /* Solaris 10 and up */
250 # define S_ISPORT(m) 0
255 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
257 # define S_ISREG(m) 0
263 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
265 # define S_ISSOCK(m) 0
271 # define S_TYPEISMQ(p) 0
275 # define S_TYPEISTMO(p) 0
281 # define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
283 # define S_TYPEISSEM(p) 0
289 # define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
291 # define S_TYPEISSHM(p) 0
295 /* high performance ("contiguous data") */
297 # define S_ISCTG(p) 0
300 /* Cray DMF (data migration facility): off line, with data */
302 # define S_ISOFD(p) 0
305 /* Cray DMF (data migration facility): off line, with no data */
307 # define S_ISOFL(p) 0
310 /* 4.4BSD whiteout */
312 # define S_ISWHT(m) 0
315 /* If any of the following are undefined,
316 define them to their de facto standard values. */
318 # define S_ISUID 04000
321 # define S_ISGID 02000
324 /* S_ISVTX is a common extension to POSIX. */
326 # define S_ISVTX 01000
329 #if !S_IRUSR && S_IREAD
330 # define S_IRUSR S_IREAD
333 # define S_IRUSR 00400
336 # define S_IRGRP (S_IRUSR >> 3)
339 # define S_IROTH (S_IRUSR >> 6)
342 #if !S_IWUSR && S_IWRITE
343 # define S_IWUSR S_IWRITE
346 # define S_IWUSR 00200
349 # define S_IWGRP (S_IWUSR >> 3)
352 # define S_IWOTH (S_IWUSR >> 6)
355 #if !S_IXUSR && S_IEXEC
356 # define S_IXUSR S_IEXEC
359 # define S_IXUSR 00100
362 # define S_IXGRP (S_IXUSR >> 3)
365 # define S_IXOTH (S_IXUSR >> 6)
369 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
372 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
375 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
378 /* Although S_IXUGO and S_IRWXUGO are not specified by POSIX and are
379 not implemented in GNU/Linux, some Gnulib-using apps use the macros. */
381 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
384 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
387 /* Macros for futimens and utimensat. */
389 # define UTIME_NOW (-1)
390 # define UTIME_OMIT (-2)
396 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
398 # define chmod rpl_chmod
400 _GL_FUNCDECL_RPL (chmod
, int, (const char *filename
, mode_t mode
)
401 _GL_ARG_NONNULL ((1)));
402 _GL_CXXALIAS_RPL (chmod
, int, (const char *filename
, mode_t mode
));
403 # elif defined _WIN32 && !defined __CYGWIN__
404 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
406 # define chmod _chmod
408 /* Need to cast, because in mingw the last argument is 'int mode'. */
409 _GL_CXXALIAS_MDA_CAST (chmod
, int, (const char *filename
, mode_t mode
));
411 _GL_CXXALIAS_SYS (chmod
, int, (const char *filename
, mode_t mode
));
413 _GL_CXXALIASWARN (chmod
);
414 #elif defined GNULIB_POSIXCHECK
416 # if HAVE_RAW_DECL_CHMOD
417 _GL_WARN_ON_USE (chmod
, "chmod has portability problems - "
418 "use gnulib module chmod for portability");
420 #elif @GNULIB_MDA_CHMOD@
421 /* On native Windows, map 'chmod' to '_chmod', so that -loldnames is not
422 required. In C++ with GNULIB_NAMESPACE, avoid differences between
423 platforms by defining GNULIB_NAMESPACE::chmod always. */
424 # if defined _WIN32 && !defined __CYGWIN__
425 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
427 # define chmod _chmod
429 /* Need to cast, because in mingw the last argument is 'int mode'. */
430 _GL_CXXALIAS_MDA_CAST (chmod
, int, (const char *filename
, mode_t mode
));
432 _GL_CXXALIAS_SYS (chmod
, int, (const char *filename
, mode_t mode
));
434 _GL_CXXALIASWARN (chmod
);
438 #if @GNULIB_FCHMODAT@
439 # if @REPLACE_FCHMODAT@
440 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
442 # define fchmodat rpl_fchmodat
444 _GL_FUNCDECL_RPL (fchmodat
, int,
445 (int fd
, char const *file
, mode_t mode
, int flag
)
446 _GL_ARG_NONNULL ((2)));
447 _GL_CXXALIAS_RPL (fchmodat
, int,
448 (int fd
, char const *file
, mode_t mode
, int flag
));
450 # if !@HAVE_FCHMODAT@
451 _GL_FUNCDECL_SYS (fchmodat
, int,
452 (int fd
, char const *file
, mode_t mode
, int flag
)
453 _GL_ARG_NONNULL ((2)));
455 _GL_CXXALIAS_SYS (fchmodat
, int,
456 (int fd
, char const *file
, mode_t mode
, int flag
));
458 _GL_CXXALIASWARN (fchmodat
);
459 #elif defined GNULIB_POSIXCHECK
461 # if HAVE_RAW_DECL_FCHMODAT
462 _GL_WARN_ON_USE (fchmodat
, "fchmodat is not portable - "
463 "use gnulib module openat for portability");
470 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
472 # define fstat rpl_fstat
474 _GL_FUNCDECL_RPL (fstat
, int, (int fd
, struct stat
*buf
) _GL_ARG_NONNULL ((2)));
475 _GL_CXXALIAS_RPL (fstat
, int, (int fd
, struct stat
*buf
));
477 _GL_CXXALIAS_SYS (fstat
, int, (int fd
, struct stat
*buf
));
480 _GL_CXXALIASWARN (fstat
);
482 #elif @GNULIB_OVERRIDES_STRUCT_STAT@
484 # define fstat fstat_used_without_requesting_gnulib_module_fstat
485 #elif @WINDOWS_64_BIT_ST_SIZE@
486 /* Above, we define stat to _stati64. */
487 # define fstat _fstati64
488 #elif defined GNULIB_POSIXCHECK
490 # if HAVE_RAW_DECL_FSTAT
491 _GL_WARN_ON_USE (fstat
, "fstat has portability problems - "
492 "use gnulib module fstat for portability");
498 # if @REPLACE_FSTATAT@
499 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
501 # define fstatat rpl_fstatat
503 _GL_FUNCDECL_RPL (fstatat
, int,
504 (int fd
, char const *restrict name
, struct stat
*restrict st
,
506 _GL_ARG_NONNULL ((2, 3)));
507 _GL_CXXALIAS_RPL (fstatat
, int,
508 (int fd
, char const *restrict name
, struct stat
*restrict st
,
512 _GL_FUNCDECL_SYS (fstatat
, int,
513 (int fd
, char const *restrict name
, struct stat
*restrict st
,
515 _GL_ARG_NONNULL ((2, 3)));
517 _GL_CXXALIAS_SYS (fstatat
, int,
518 (int fd
, char const *restrict name
, struct stat
*restrict st
,
521 _GL_CXXALIASWARN (fstatat
);
522 #elif @GNULIB_OVERRIDES_STRUCT_STAT@
524 # define fstatat fstatat_used_without_requesting_gnulib_module_fstatat
525 #elif defined GNULIB_POSIXCHECK
527 # if HAVE_RAW_DECL_FSTATAT
528 _GL_WARN_ON_USE (fstatat
, "fstatat is not portable - "
529 "use gnulib module openat for portability");
534 #if @GNULIB_FUTIMENS@
535 /* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our futimens
536 implementation relies on futimesat, which on Solaris 10 makes an invocation
537 to futimens that is meant to invoke the libc's futimens(), not gnulib's
539 # if @REPLACE_FUTIMENS@ || (!@HAVE_FUTIMENS@ && defined __sun)
540 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
542 # define futimens rpl_futimens
544 _GL_FUNCDECL_RPL (futimens
, int, (int fd
, struct timespec
const times
[2]));
545 _GL_CXXALIAS_RPL (futimens
, int, (int fd
, struct timespec
const times
[2]));
547 # if !@HAVE_FUTIMENS@
548 _GL_FUNCDECL_SYS (futimens
, int, (int fd
, struct timespec
const times
[2]));
550 _GL_CXXALIAS_SYS (futimens
, int, (int fd
, struct timespec
const times
[2]));
553 _GL_CXXALIASWARN (futimens
);
555 #elif defined GNULIB_POSIXCHECK
557 # if HAVE_RAW_DECL_FUTIMENS
558 _GL_WARN_ON_USE (futimens
, "futimens is not portable - "
559 "use gnulib module futimens for portability");
564 #if @GNULIB_GETUMASK@
565 # if !@HAVE_GETUMASK@
566 _GL_FUNCDECL_SYS (getumask
, mode_t
, (void));
568 _GL_CXXALIAS_SYS (getumask
, mode_t
, (void));
570 _GL_CXXALIASWARN (getumask
);
572 #elif defined GNULIB_POSIXCHECK
574 # if HAVE_RAW_DECL_GETUMASK
575 _GL_WARN_ON_USE (getumask
, "getumask is not portable - "
576 "use gnulib module getumask for portability");
582 /* Change the mode of FILENAME to MODE, without dereferencing it if FILENAME
583 denotes a symbolic link. */
584 # if !@HAVE_LCHMOD@ || defined __hpux
585 _GL_FUNCDECL_SYS (lchmod
, int, (const char *filename
, mode_t mode
)
586 _GL_ARG_NONNULL ((1)));
588 _GL_CXXALIAS_SYS (lchmod
, int, (const char *filename
, mode_t mode
));
589 _GL_CXXALIASWARN (lchmod
);
590 #elif defined GNULIB_POSIXCHECK
592 # if HAVE_RAW_DECL_LCHMOD
593 _GL_WARN_ON_USE (lchmod
, "lchmod is unportable - "
594 "use gnulib module lchmod for portability");
601 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
603 # define mkdir rpl_mkdir
605 _GL_FUNCDECL_RPL (mkdir
, int, (char const *name
, mode_t mode
)
606 _GL_ARG_NONNULL ((1)));
607 _GL_CXXALIAS_RPL (mkdir
, int, (char const *name
, mode_t mode
));
608 # elif defined _WIN32 && !defined __CYGWIN__
609 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
610 Additionally, it declares _mkdir (and depending on compile flags, an
611 alias mkdir), only in the nonstandard includes <direct.h> and <io.h>,
612 which are included above. */
613 # if !GNULIB_defined_rpl_mkdir
615 rpl_mkdir (char const *name
, mode_t mode
)
617 return _mkdir (name
);
619 # define GNULIB_defined_rpl_mkdir 1
621 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
623 # define mkdir rpl_mkdir
625 _GL_CXXALIAS_RPL (mkdir
, int, (char const *name
, mode_t mode
));
627 _GL_CXXALIAS_SYS (mkdir
, int, (char const *name
, mode_t mode
));
629 _GL_CXXALIASWARN (mkdir
);
630 #elif defined GNULIB_POSIXCHECK
632 # if HAVE_RAW_DECL_MKDIR
633 _GL_WARN_ON_USE (mkdir
, "mkdir does not always support two parameters - "
634 "use gnulib module mkdir for portability");
636 #elif @GNULIB_MDA_MKDIR@
637 /* On native Windows, map 'mkdir' to '_mkdir', so that -loldnames is not
638 required. In C++ with GNULIB_NAMESPACE, avoid differences between
639 platforms by defining GNULIB_NAMESPACE::mkdir always. */
640 # if defined _WIN32 && !defined __CYGWIN__
641 # if !GNULIB_defined_rpl_mkdir
643 rpl_mkdir (char const *name
, mode_t mode
)
645 return _mkdir (name
);
647 # define GNULIB_defined_rpl_mkdir 1
649 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
651 # define mkdir rpl_mkdir
653 _GL_CXXALIAS_RPL (mkdir
, int, (char const *name
, mode_t mode
));
655 _GL_CXXALIAS_SYS (mkdir
, int, (char const *name
, mode_t mode
));
657 _GL_CXXALIASWARN (mkdir
);
663 _GL_FUNCDECL_SYS (mkdirat
, int, (int fd
, char const *file
, mode_t mode
)
664 _GL_ARG_NONNULL ((2)));
666 _GL_CXXALIAS_SYS (mkdirat
, int, (int fd
, char const *file
, mode_t mode
));
667 _GL_CXXALIASWARN (mkdirat
);
668 #elif defined GNULIB_POSIXCHECK
670 # if HAVE_RAW_DECL_MKDIRAT
671 _GL_WARN_ON_USE (mkdirat
, "mkdirat is not portable - "
672 "use gnulib module openat for portability");
678 # if @REPLACE_MKFIFO@
679 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
681 # define mkfifo rpl_mkfifo
683 _GL_FUNCDECL_RPL (mkfifo
, int, (char const *file
, mode_t mode
)
684 _GL_ARG_NONNULL ((1)));
685 _GL_CXXALIAS_RPL (mkfifo
, int, (char const *file
, mode_t mode
));
688 _GL_FUNCDECL_SYS (mkfifo
, int, (char const *file
, mode_t mode
)
689 _GL_ARG_NONNULL ((1)));
691 _GL_CXXALIAS_SYS (mkfifo
, int, (char const *file
, mode_t mode
));
693 _GL_CXXALIASWARN (mkfifo
);
694 #elif defined GNULIB_POSIXCHECK
696 # if HAVE_RAW_DECL_MKFIFO
697 _GL_WARN_ON_USE (mkfifo
, "mkfifo is not portable - "
698 "use gnulib module mkfifo for portability");
703 #if @GNULIB_MKFIFOAT@
704 # if @REPLACE_MKFIFOAT@
705 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
707 # define mkfifoat rpl_mkfifoat
709 _GL_FUNCDECL_RPL (mkfifoat
, int, (int fd
, char const *file
, mode_t mode
)
710 _GL_ARG_NONNULL ((2)));
711 _GL_CXXALIAS_RPL (mkfifoat
, int, (int fd
, char const *file
, mode_t mode
));
713 # if !@HAVE_MKFIFOAT@
714 _GL_FUNCDECL_SYS (mkfifoat
, int, (int fd
, char const *file
, mode_t mode
)
715 _GL_ARG_NONNULL ((2)));
717 _GL_CXXALIAS_SYS (mkfifoat
, int, (int fd
, char const *file
, mode_t mode
));
719 _GL_CXXALIASWARN (mkfifoat
);
720 #elif defined GNULIB_POSIXCHECK
722 # if HAVE_RAW_DECL_MKFIFOAT
723 _GL_WARN_ON_USE (mkfifoat
, "mkfifoat is not portable - "
724 "use gnulib module mkfifoat for portability");
731 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
733 # define mknod rpl_mknod
735 _GL_FUNCDECL_RPL (mknod
, int, (char const *file
, mode_t mode
, dev_t dev
)
736 _GL_ARG_NONNULL ((1)));
737 _GL_CXXALIAS_RPL (mknod
, int, (char const *file
, mode_t mode
, dev_t dev
));
740 _GL_FUNCDECL_SYS (mknod
, int, (char const *file
, mode_t mode
, dev_t dev
)
741 _GL_ARG_NONNULL ((1)));
743 /* Need to cast, because on OSF/1 5.1, the third parameter is '...'. */
744 _GL_CXXALIAS_SYS_CAST (mknod
, int, (char const *file
, mode_t mode
, dev_t dev
));
746 _GL_CXXALIASWARN (mknod
);
747 #elif defined GNULIB_POSIXCHECK
749 # if HAVE_RAW_DECL_MKNOD
750 _GL_WARN_ON_USE (mknod
, "mknod is not portable - "
751 "use gnulib module mknod for portability");
757 # if @REPLACE_MKNODAT@
758 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
760 # define mknodat rpl_mknodat
762 _GL_FUNCDECL_RPL (mknodat
, int,
763 (int fd
, char const *file
, mode_t mode
, dev_t dev
)
764 _GL_ARG_NONNULL ((2)));
765 _GL_CXXALIAS_RPL (mknodat
, int,
766 (int fd
, char const *file
, mode_t mode
, dev_t dev
));
769 _GL_FUNCDECL_SYS (mknodat
, int,
770 (int fd
, char const *file
, mode_t mode
, dev_t dev
)
771 _GL_ARG_NONNULL ((2)));
773 _GL_CXXALIAS_SYS (mknodat
, int,
774 (int fd
, char const *file
, mode_t mode
, dev_t dev
));
776 _GL_CXXALIASWARN (mknodat
);
777 #elif defined GNULIB_POSIXCHECK
779 # if HAVE_RAW_DECL_MKNODAT
780 _GL_WARN_ON_USE (mknodat
, "mknodat is not portable - "
781 "use gnulib module mkfifoat for portability");
788 # if !@GNULIB_OVERRIDES_STRUCT_STAT@
789 /* We can't use the object-like #define stat rpl_stat, because of
790 struct stat. This means that rpl_stat will not be used if the user
791 does (stat)(a,b). Oh well. */
792 # if defined _AIX && defined stat && defined _LARGE_FILES
793 /* With _LARGE_FILES defined, AIX (only) defines stat to stat64,
794 so we have to replace stat64() instead of stat(). */
796 # define stat64(name, st) rpl_stat (name, st)
797 # elif @WINDOWS_64_BIT_ST_SIZE@
798 /* Above, we define stat to _stati64. */
799 # if defined __MINGW32__ && defined _stati64
800 # ifndef _USE_32BIT_TIME_T
801 /* The system headers define _stati64 to _stat64. */
803 # define _stat64(name, st) rpl_stat (name, st)
805 # elif defined _MSC_VER && defined _stati64
806 # ifdef _USE_32BIT_TIME_T
807 /* The system headers define _stati64 to _stat32i64. */
809 # define _stat32i64(name, st) rpl_stat (name, st)
811 /* The system headers define _stati64 to _stat64. */
813 # define _stat64(name, st) rpl_stat (name, st)
817 # define _stati64(name, st) rpl_stat (name, st)
819 # elif defined __MINGW32__ && defined stat
820 # ifdef _USE_32BIT_TIME_T
821 /* The system headers define stat to _stat32i64. */
823 # define _stat32i64(name, st) rpl_stat (name, st)
825 /* The system headers define stat to _stat64. */
827 # define _stat64(name, st) rpl_stat (name, st)
829 # elif defined _MSC_VER && defined stat
830 # ifdef _USE_32BIT_TIME_T
831 /* The system headers define stat to _stat32. */
833 # define _stat32(name, st) rpl_stat (name, st)
835 /* The system headers define stat to _stat64i32. */
837 # define _stat64i32(name, st) rpl_stat (name, st)
839 # else /* !(_AIX || __MINGW32__ || _MSC_VER) */
841 # define stat(name, st) rpl_stat (name, st)
842 # endif /* !_LARGE_FILES */
843 # endif /* !@GNULIB_OVERRIDES_STRUCT_STAT@ */
844 _GL_EXTERN_C
int stat (const char *restrict name
, struct stat
*restrict buf
)
845 _GL_ARG_NONNULL ((1, 2));
847 #elif @GNULIB_OVERRIDES_STRUCT_STAT@
849 #define stat stat_used_without_requesting_gnulib_module_stat
851 #elif defined GNULIB_POSIXCHECK
853 # if HAVE_RAW_DECL_STAT
854 _GL_WARN_ON_USE (stat
, "stat is unportable - "
855 "use gnulib module stat for portability");
862 /* mingw does not support symlinks, therefore it does not have lstat. But
863 without links, stat does just fine. */
864 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
867 _GL_CXXALIAS_RPL_1 (lstat
, stat
, int,
868 (const char *restrict name
, struct stat
*restrict buf
));
869 # elif @REPLACE_LSTAT@
870 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
872 # define lstat rpl_lstat
874 _GL_FUNCDECL_RPL (lstat
, int,
875 (const char *restrict name
, struct stat
*restrict buf
)
876 _GL_ARG_NONNULL ((1, 2)));
877 _GL_CXXALIAS_RPL (lstat
, int,
878 (const char *restrict name
, struct stat
*restrict buf
));
880 _GL_CXXALIAS_SYS (lstat
, int,
881 (const char *restrict name
, struct stat
*restrict buf
));
884 _GL_CXXALIASWARN (lstat
);
886 #elif @GNULIB_OVERRIDES_STRUCT_STAT@
888 # define lstat lstat_used_without_requesting_gnulib_module_lstat
889 #elif defined GNULIB_POSIXCHECK
891 # if HAVE_RAW_DECL_LSTAT
892 _GL_WARN_ON_USE (lstat
, "lstat is unportable - "
893 "use gnulib module lstat for portability");
898 #if @GNULIB_MDA_UMASK@
899 /* On native Windows, map 'umask' to '_umask', so that -loldnames is not
900 required. In C++ with GNULIB_NAMESPACE, avoid differences between
901 platforms by defining GNULIB_NAMESPACE::umask always. */
902 # if defined _WIN32 && !defined __CYGWIN__
903 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
905 # define umask _umask
907 /* Need to cast, because in mingw the last argument is 'int mode'. */
908 _GL_CXXALIAS_MDA_CAST (umask
, mode_t
, (mode_t mask
));
910 _GL_CXXALIAS_SYS (umask
, mode_t
, (mode_t mask
));
912 _GL_CXXALIASWARN (umask
);
916 #if @GNULIB_UTIMENSAT@
917 /* Use the rpl_ prefix also on Solaris <= 9, because on Solaris 9 our utimensat
918 implementation relies on futimesat, which on Solaris 10 makes an invocation
919 to utimensat that is meant to invoke the libc's utimensat(), not gnulib's
921 # if @REPLACE_UTIMENSAT@ || (!@HAVE_UTIMENSAT@ && defined __sun)
922 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
924 # define utimensat rpl_utimensat
926 _GL_FUNCDECL_RPL (utimensat
, int, (int fd
, char const *name
,
927 struct timespec
const times
[2], int flag
)
928 _GL_ARG_NONNULL ((2)));
929 _GL_CXXALIAS_RPL (utimensat
, int, (int fd
, char const *name
,
930 struct timespec
const times
[2], int flag
));
932 # if !@HAVE_UTIMENSAT@
933 _GL_FUNCDECL_SYS (utimensat
, int, (int fd
, char const *name
,
934 struct timespec
const times
[2], int flag
)
935 _GL_ARG_NONNULL ((2)));
937 _GL_CXXALIAS_SYS (utimensat
, int, (int fd
, char const *name
,
938 struct timespec
const times
[2], int flag
));
940 # if @HAVE_UTIMENSAT@
941 _GL_CXXALIASWARN (utimensat
);
943 #elif defined GNULIB_POSIXCHECK
945 # if HAVE_RAW_DECL_UTIMENSAT
946 _GL_WARN_ON_USE (utimensat
, "utimensat is not portable - "
947 "use gnulib module utimensat for portability");
952 #endif /* _@GUARD_PREFIX@_SYS_STAT_H */
953 #endif /* _@GUARD_PREFIX@_SYS_STAT_H */