]> git.cworth.org Git - tar/blob - gnu/sys_stat.in.h
75e38ed6a6e9f8d441751f980c19da4c6a75d876
[tar] / gnu / sys_stat.in.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Provide a more complete sys/stat header file.
4    Copyright (C) 2005-2010 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by Eric Blake, Paul Eggert, and Jim Meyering.  */
21
22 /* This file is supposed to be used on platforms where <sys/stat.h> is
23    incomplete.  It is intended to provide definitions and prototypes
24    needed by an application.  Start with what the system provides.  */
25
26 #if __GNUC__ >= 3
27 @PRAGMA_SYSTEM_HEADER@
28 #endif
29
30 #if defined __need_system_sys_stat_h
31 /* Special invocation convention.  */
32
33 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
34
35 #else
36 /* Normal invocation convention.  */
37
38 #ifndef _GL_SYS_STAT_H
39
40 /* Get nlink_t.  */
41 #include <sys/types.h>
42
43 /* Get struct timespec.  */
44 #include <time.h>
45
46 /* The include_next requires a split double-inclusion guard.  */
47 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
48
49 #ifndef _GL_SYS_STAT_H
50 #define _GL_SYS_STAT_H
51
52 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
53
54 /* The definition of _GL_ARG_NONNULL is copied here.  */
55
56 /* The definition of _GL_WARN_ON_USE is copied here.  */
57
58 /* Before doing "#define mkdir rpl_mkdir" below, we need to include all
59    headers that may declare mkdir().  */
60 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
61 # include <io.h>
62 #endif
63
64 #ifndef S_IFMT
65 # define S_IFMT 0170000
66 #endif
67
68 #if STAT_MACROS_BROKEN
69 # undef S_ISBLK
70 # undef S_ISCHR
71 # undef S_ISDIR
72 # undef S_ISFIFO
73 # undef S_ISLNK
74 # undef S_ISNAM
75 # undef S_ISMPB
76 # undef S_ISMPC
77 # undef S_ISNWK
78 # undef S_ISREG
79 # undef S_ISSOCK
80 #endif
81
82 #ifndef S_ISBLK
83 # ifdef S_IFBLK
84 #  define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
85 # else
86 #  define S_ISBLK(m) 0
87 # endif
88 #endif
89
90 #ifndef S_ISCHR
91 # ifdef S_IFCHR
92 #  define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
93 # else
94 #  define S_ISCHR(m) 0
95 # endif
96 #endif
97
98 #ifndef S_ISDIR
99 # ifdef S_IFDIR
100 #  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
101 # else
102 #  define S_ISDIR(m) 0
103 # endif
104 #endif
105
106 #ifndef S_ISDOOR /* Solaris 2.5 and up */
107 # define S_ISDOOR(m) 0
108 #endif
109
110 #ifndef S_ISFIFO
111 # ifdef S_IFIFO
112 #  define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
113 # else
114 #  define S_ISFIFO(m) 0
115 # endif
116 #endif
117
118 #ifndef S_ISLNK
119 # ifdef S_IFLNK
120 #  define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
121 # else
122 #  define S_ISLNK(m) 0
123 # endif
124 #endif
125
126 #ifndef S_ISMPB /* V7 */
127 # ifdef S_IFMPB
128 #  define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
129 #  define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
130 # else
131 #  define S_ISMPB(m) 0
132 #  define S_ISMPC(m) 0
133 # endif
134 #endif
135
136 #ifndef S_ISNAM /* Xenix */
137 # ifdef S_IFNAM
138 #  define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
139 # else
140 #  define S_ISNAM(m) 0
141 # endif
142 #endif
143
144 #ifndef S_ISNWK /* HP/UX */
145 # ifdef S_IFNWK
146 #  define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
147 # else
148 #  define S_ISNWK(m) 0
149 # endif
150 #endif
151
152 #ifndef S_ISPORT /* Solaris 10 and up */
153 # define S_ISPORT(m) 0
154 #endif
155
156 #ifndef S_ISREG
157 # ifdef S_IFREG
158 #  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
159 # else
160 #  define S_ISREG(m) 0
161 # endif
162 #endif
163
164 #ifndef S_ISSOCK
165 # ifdef S_IFSOCK
166 #  define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
167 # else
168 #  define S_ISSOCK(m) 0
169 # endif
170 #endif
171
172
173 #ifndef S_TYPEISMQ
174 # define S_TYPEISMQ(p) 0
175 #endif
176
177 #ifndef S_TYPEISTMO
178 # define S_TYPEISTMO(p) 0
179 #endif
180
181
182 #ifndef S_TYPEISSEM
183 # ifdef S_INSEM
184 #  define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
185 # else
186 #  define S_TYPEISSEM(p) 0
187 # endif
188 #endif
189
190 #ifndef S_TYPEISSHM
191 # ifdef S_INSHD
192 #  define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
193 # else
194 #  define S_TYPEISSHM(p) 0
195 # endif
196 #endif
197
198 /* high performance ("contiguous data") */
199 #ifndef S_ISCTG
200 # define S_ISCTG(p) 0
201 #endif
202
203 /* Cray DMF (data migration facility): off line, with data  */
204 #ifndef S_ISOFD
205 # define S_ISOFD(p) 0
206 #endif
207
208 /* Cray DMF (data migration facility): off line, with no data  */
209 #ifndef S_ISOFL
210 # define S_ISOFL(p) 0
211 #endif
212
213 /* 4.4BSD whiteout */
214 #ifndef S_ISWHT
215 # define S_ISWHT(m) 0
216 #endif
217
218 /* If any of the following are undefined,
219    define them to their de facto standard values.  */
220 #if !S_ISUID
221 # define S_ISUID 04000
222 #endif
223 #if !S_ISGID
224 # define S_ISGID 02000
225 #endif
226
227 /* S_ISVTX is a common extension to POSIX.  */
228 #ifndef S_ISVTX
229 # define S_ISVTX 01000
230 #endif
231
232 #if !S_IRUSR && S_IREAD
233 # define S_IRUSR S_IREAD
234 #endif
235 #if !S_IRUSR
236 # define S_IRUSR 00400
237 #endif
238 #if !S_IRGRP
239 # define S_IRGRP (S_IRUSR >> 3)
240 #endif
241 #if !S_IROTH
242 # define S_IROTH (S_IRUSR >> 6)
243 #endif
244
245 #if !S_IWUSR && S_IWRITE
246 # define S_IWUSR S_IWRITE
247 #endif
248 #if !S_IWUSR
249 # define S_IWUSR 00200
250 #endif
251 #if !S_IWGRP
252 # define S_IWGRP (S_IWUSR >> 3)
253 #endif
254 #if !S_IWOTH
255 # define S_IWOTH (S_IWUSR >> 6)
256 #endif
257
258 #if !S_IXUSR && S_IEXEC
259 # define S_IXUSR S_IEXEC
260 #endif
261 #if !S_IXUSR
262 # define S_IXUSR 00100
263 #endif
264 #if !S_IXGRP
265 # define S_IXGRP (S_IXUSR >> 3)
266 #endif
267 #if !S_IXOTH
268 # define S_IXOTH (S_IXUSR >> 6)
269 #endif
270
271 #if !S_IRWXU
272 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
273 #endif
274 #if !S_IRWXG
275 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
276 #endif
277 #if !S_IRWXO
278 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
279 #endif
280
281 /* S_IXUGO is a common extension to POSIX.  */
282 #if !S_IXUGO
283 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
284 #endif
285
286 #ifndef S_IRWXUGO
287 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
288 #endif
289
290 /* Macros for futimens and utimensat.  */
291 #ifndef UTIME_NOW
292 # define UTIME_NOW (-1)
293 # define UTIME_OMIT (-2)
294 #endif
295
296
297 #if @GNULIB_FCHMODAT@
298 # if !@HAVE_FCHMODAT@
299 _GL_FUNCDECL_SYS (fchmodat, int,
300                   (int fd, char const *file, mode_t mode, int flag)
301                   _GL_ARG_NONNULL ((2)));
302 # endif
303 _GL_CXXALIAS_SYS (fchmodat, int,
304                   (int fd, char const *file, mode_t mode, int flag));
305 _GL_CXXALIASWARN (fchmodat);
306 #elif defined GNULIB_POSIXCHECK
307 # undef fchmodat
308 # if HAVE_RAW_DECL_FCHMODAT
309 _GL_WARN_ON_USE (fchmodat, "fchmodat is not portable - "
310                  "use gnulib module openat for portability");
311 # endif
312 #endif
313
314
315 #if @REPLACE_FSTAT@
316 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
317 #  define fstat rpl_fstat
318 # endif
319 _GL_FUNCDECL_RPL (fstat, int, (int fd, struct stat *buf) _GL_ARG_NONNULL ((2)));
320 _GL_CXXALIAS_RPL (fstat, int, (int fd, struct stat *buf));
321 #else
322 _GL_CXXALIAS_SYS (fstat, int, (int fd, struct stat *buf));
323 #endif
324 _GL_CXXALIASWARN (fstat);
325
326
327 #if @GNULIB_FSTATAT@
328 # if @REPLACE_FSTATAT@
329 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
330 #   undef fstatat
331 #   define fstatat rpl_fstatat
332 #  endif
333 _GL_FUNCDECL_RPL (fstatat, int,
334                   (int fd, char const *name, struct stat *st, int flags)
335                   _GL_ARG_NONNULL ((2, 3)));
336 _GL_CXXALIAS_RPL (fstatat, int,
337                   (int fd, char const *name, struct stat *st, int flags));
338 # else
339 #  if !@HAVE_FSTATAT@
340 _GL_FUNCDECL_SYS (fstatat, int,
341                   (int fd, char const *name, struct stat *st, int flags)
342                   _GL_ARG_NONNULL ((2, 3)));
343 #  endif
344 _GL_CXXALIAS_SYS (fstatat, int,
345                   (int fd, char const *name, struct stat *st, int flags));
346 # endif
347 _GL_CXXALIASWARN (fstatat);
348 #elif defined GNULIB_POSIXCHECK
349 # undef fstatat
350 # if HAVE_RAW_DECL_FSTATAT
351 _GL_WARN_ON_USE (fstatat, "fstatat is not portable - "
352                  "use gnulib module openat for portability");
353 # endif
354 #endif
355
356
357 #if @GNULIB_FUTIMENS@
358 # if @REPLACE_FUTIMENS@
359 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
360 #   undef futimens
361 #   define futimens rpl_futimens
362 #  endif
363 _GL_FUNCDECL_RPL (futimens, int, (int fd, struct timespec const times[2]));
364 _GL_CXXALIAS_RPL (futimens, int, (int fd, struct timespec const times[2]));
365 # else
366 #  if !@HAVE_FUTIMENS@
367 _GL_FUNCDECL_SYS (futimens, int, (int fd, struct timespec const times[2]));
368 #  endif
369 _GL_CXXALIAS_SYS (futimens, int, (int fd, struct timespec const times[2]));
370 # endif
371 _GL_CXXALIASWARN (futimens);
372 #elif defined GNULIB_POSIXCHECK
373 # undef futimens
374 # if HAVE_RAW_DECL_FUTIMENS
375 _GL_WARN_ON_USE (futimens, "futimens is not portable - "
376                  "use gnulib module futimens for portability");
377 # endif
378 #endif
379
380
381 #if @GNULIB_LCHMOD@
382 /* Change the mode of FILENAME to MODE, without dereferencing it if FILENAME
383    denotes a symbolic link.  */
384 # if !@HAVE_LCHMOD@
385 /* The lchmod replacement follows symbolic links.  Callers should take
386    this into account; lchmod should be applied only to arguments that
387    are known to not be symbolic links.  On hosts that lack lchmod,
388    this can lead to race conditions between the check and the
389    invocation of lchmod, but we know of no workarounds that are
390    reliable in general.  You might try requesting support for lchmod
391    from your operating system supplier.  */
392 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
393 #   define lchmod chmod
394 #  endif
395 _GL_CXXALIAS_RPL_1 (lchmod, chmod, int, (const char *filename, mode_t mode));
396 # else
397 #  if 0 /* assume already declared */
398 _GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)
399                                _GL_ARG_NONNULL ((1)));
400 #  endif
401 _GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));
402 # endif
403 _GL_CXXALIASWARN (lchmod);
404 #elif defined GNULIB_POSIXCHECK
405 # undef lchmod
406 # if HAVE_RAW_DECL_LCHMOD
407 _GL_WARN_ON_USE (lchmod, "lchmod is unportable - "
408                  "use gnulib module lchmod for portability");
409 # endif
410 #endif
411
412
413 #if @GNULIB_LSTAT@
414 # if ! @HAVE_LSTAT@
415 /* mingw does not support symlinks, therefore it does not have lstat.  But
416    without links, stat does just fine.  */
417 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
418 #   define lstat stat
419 #  endif
420 _GL_CXXALIAS_RPL_1 (lstat, stat, int, (const char *name, struct stat *buf));
421 # elif @REPLACE_LSTAT@
422 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
423 #   undef lstat
424 #   define lstat rpl_lstat
425 #  endif
426 _GL_FUNCDECL_RPL (lstat, int, (const char *name, struct stat *buf)
427                               _GL_ARG_NONNULL ((1, 2)));
428 _GL_CXXALIAS_RPL (lstat, int, (const char *name, struct stat *buf));
429 # else
430 _GL_CXXALIAS_SYS (lstat, int, (const char *name, struct stat *buf));
431 # endif
432 _GL_CXXALIASWARN (lstat);
433 #elif defined GNULIB_POSIXCHECK
434 # undef lstat
435 # if HAVE_RAW_DECL_LSTAT
436 _GL_WARN_ON_USE (lstat, "lstat is unportable - "
437                  "use gnulib module lstat for portability");
438 # endif
439 #endif
440
441
442 #if @REPLACE_MKDIR@
443 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
444 #  undef mkdir
445 #  define mkdir rpl_mkdir
446 # endif
447 _GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)
448                               _GL_ARG_NONNULL ((1)));
449 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
450 #else
451 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
452    Additionally, it declares _mkdir (and depending on compile flags, an
453    alias mkdir), only in the nonstandard <io.h>, which is included above.  */
454 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
455
456 static inline int
457 rpl_mkdir (char const *name, mode_t mode)
458 {
459   return _mkdir (name);
460 }
461
462 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
463 #   define mkdir rpl_mkdir
464 #  endif
465 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
466 # else
467 _GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mode));
468 # endif
469 #endif
470 _GL_CXXALIASWARN (mkdir);
471
472
473 #if @GNULIB_MKDIRAT@
474 # if !@HAVE_MKDIRAT@
475 _GL_FUNCDECL_SYS (mkdirat, int, (int fd, char const *file, mode_t mode)
476                                 _GL_ARG_NONNULL ((2)));
477 # endif
478 _GL_CXXALIAS_SYS (mkdirat, int, (int fd, char const *file, mode_t mode));
479 _GL_CXXALIASWARN (mkdirat);
480 #elif defined GNULIB_POSIXCHECK
481 # undef mkdirat
482 # if HAVE_RAW_DECL_MKDIRAT
483 _GL_WARN_ON_USE (mkdirat, "mkdirat is not portable - "
484                  "use gnulib module openat for portability");
485 # endif
486 #endif
487
488
489 #if @GNULIB_MKFIFO@
490 # if @REPLACE_MKFIFO@
491 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
492 #   undef mkfifo
493 #   define mkfifo rpl_mkfifo
494 #  endif
495 _GL_FUNCDECL_RPL (mkfifo, int, (char const *file, mode_t mode)
496                                _GL_ARG_NONNULL ((1)));
497 _GL_CXXALIAS_RPL (mkfifo, int, (char const *file, mode_t mode));
498 # else
499 #  if !@HAVE_MKFIFO@
500 _GL_FUNCDECL_SYS (mkfifo, int, (char const *file, mode_t mode)
501                                _GL_ARG_NONNULL ((1)));
502 #  endif
503 _GL_CXXALIAS_SYS (mkfifo, int, (char const *file, mode_t mode));
504 # endif
505 _GL_CXXALIASWARN (mkfifo);
506 #elif defined GNULIB_POSIXCHECK
507 # undef mkfifo
508 # if HAVE_RAW_DECL_MKFIFO
509 _GL_WARN_ON_USE (mkfifo, "mkfifo is not portable - "
510                  "use gnulib module mkfifo for portability");
511 # endif
512 #endif
513
514
515 #if @GNULIB_MKFIFOAT@
516 # if !@HAVE_MKFIFOAT@
517 _GL_FUNCDECL_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode)
518                                  _GL_ARG_NONNULL ((2)));
519 # endif
520 _GL_CXXALIAS_SYS (mkfifoat, int, (int fd, char const *file, mode_t mode));
521 _GL_CXXALIASWARN (mkfifoat);
522 #elif defined GNULIB_POSIXCHECK
523 # undef mkfifoat
524 # if HAVE_RAW_DECL_MKFIFOAT
525 _GL_WARN_ON_USE (mkfifoat, "mkfifoat is not portable - "
526                  "use gnulib module mkfifoat for portability");
527 # endif
528 #endif
529
530
531 #if @GNULIB_MKNOD@
532 # if @REPLACE_MKNOD@
533 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
534 #   undef mknod
535 #   define mknod rpl_mknod
536 #  endif
537 _GL_FUNCDECL_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev)
538                               _GL_ARG_NONNULL ((1)));
539 _GL_CXXALIAS_RPL (mknod, int, (char const *file, mode_t mode, dev_t dev));
540 # else
541 #  if !@HAVE_MKNOD@
542 _GL_FUNCDECL_SYS (mknod, int, (char const *file, mode_t mode, dev_t dev)
543                               _GL_ARG_NONNULL ((1)));
544 #  endif
545 _GL_CXXALIAS_SYS (mknod, int, (char const *file, mode_t mode, dev_t dev));
546 # endif
547 _GL_CXXALIASWARN (mknod);
548 #elif defined GNULIB_POSIXCHECK
549 # undef mknod
550 # if HAVE_RAW_DECL_MKNOD
551 _GL_WARN_ON_USE (mknod, "mknod is not portable - "
552                  "use gnulib module mknod for portability");
553 # endif
554 #endif
555
556
557 #if @GNULIB_MKNODAT@
558 # if !@HAVE_MKNODAT@
559 _GL_FUNCDECL_SYS (mknodat, int,
560                   (int fd, char const *file, mode_t mode, dev_t dev)
561                   _GL_ARG_NONNULL ((2)));
562 # endif
563 _GL_CXXALIAS_SYS (mknodat, int,
564                   (int fd, char const *file, mode_t mode, dev_t dev));
565 _GL_CXXALIASWARN (mknodat);
566 #elif defined GNULIB_POSIXCHECK
567 # undef mknodat
568 # if HAVE_RAW_DECL_MKNODAT
569 _GL_WARN_ON_USE (mknodat, "mknodat is not portable - "
570                  "use gnulib module mkfifoat for portability");
571 # endif
572 #endif
573
574
575 #if @GNULIB_STAT@
576 # if @REPLACE_STAT@
577 /* We can't use the object-like #define stat rpl_stat, because of
578    struct stat.  This means that rpl_stat will not be used if the user
579    does (stat)(a,b).  Oh well.  */
580 #  undef stat
581 #  ifdef _LARGE_FILES
582     /* With _LARGE_FILES defined, AIX (only) defines stat to stat64,
583        so we have to replace stat64() instead of stat(). */
584 #   define stat stat64
585 #   undef stat64
586 #   define stat64(name, st) rpl_stat (name, st)
587 #  else /* !_LARGE_FILES */
588 #   define stat(name, st) rpl_stat (name, st)
589 #  endif /* !_LARGE_FILES */
590 _GL_EXTERN_C int stat (const char *name, struct stat *buf) _GL_ARG_NONNULL ((1, 2));
591 # endif
592 #elif defined GNULIB_POSIXCHECK
593 # undef stat
594 # if HAVE_RAW_DECL_STAT
595 _GL_WARN_ON_USE (stat, "stat is unportable - "
596                  "use gnulib module stat for portability");
597 # endif
598 #endif
599
600
601 #if @GNULIB_UTIMENSAT@
602 # if @REPLACE_UTIMENSAT@
603 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
604 #   undef utimensat
605 #   define utimensat rpl_utimensat
606 #  endif
607 _GL_FUNCDECL_RPL (utimensat, int, (int fd, char const *name,
608                                    struct timespec const times[2], int flag)
609                                   _GL_ARG_NONNULL ((2)));
610 _GL_CXXALIAS_RPL (utimensat, int, (int fd, char const *name,
611                                    struct timespec const times[2], int flag));
612 # else
613 #  if !@HAVE_UTIMENSAT@
614 _GL_FUNCDECL_SYS (utimensat, int, (int fd, char const *name,
615                                    struct timespec const times[2], int flag)
616                                   _GL_ARG_NONNULL ((2)));
617 #  endif
618 _GL_CXXALIAS_SYS (utimensat, int, (int fd, char const *name,
619                                    struct timespec const times[2], int flag));
620 # endif
621 _GL_CXXALIASWARN (utimensat);
622 #elif defined GNULIB_POSIXCHECK
623 # undef utimensat
624 # if HAVE_RAW_DECL_UTIMENSAT
625 _GL_WARN_ON_USE (utimensat, "utimensat is not portable - "
626                  "use gnulib module utimensat for portability");
627 # endif
628 #endif
629
630
631 #endif /* _GL_SYS_STAT_H */
632 #endif /* _GL_SYS_STAT_H */
633 #endif