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-2009 Free Software Foundation, Inc.
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)
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.
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. */
20 /* Written by Eric Blake, Paul Eggert, and Jim Meyering. */
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. */
27 @PRAGMA_SYSTEM_HEADER@
30 #if defined __need_system_sys_stat_h
31 /* Special invocation convention. */
33 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
36 /* Normal invocation convention. */
38 #ifndef _GL_SYS_STAT_H
41 #include <sys/types.h>
43 /* The include_next requires a split double-inclusion guard. */
44 #@INCLUDE_NEXT@ @NEXT_SYS_STAT_H@
46 #ifndef _GL_SYS_STAT_H
47 #define _GL_SYS_STAT_H
49 /* The definition of GL_LINK_WARNING is copied here. */
51 /* Before doing "#define mkdir rpl_mkdir" below, we need to include all
52 headers that may declare mkdir(). */
53 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
58 # define S_IFMT 0170000
61 #if STAT_MACROS_BROKEN
77 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
85 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
93 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
99 #ifndef S_ISDOOR /* Solaris 2.5 and up */
100 # define S_ISDOOR(m) 0
105 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
107 # define S_ISFIFO(m) 0
113 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
115 # define S_ISLNK(m) 0
119 #ifndef S_ISMPB /* V7 */
121 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
122 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
124 # define S_ISMPB(m) 0
125 # define S_ISMPC(m) 0
129 #ifndef S_ISNAM /* Xenix */
131 # define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
133 # define S_ISNAM(m) 0
137 #ifndef S_ISNWK /* HP/UX */
139 # define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
141 # define S_ISNWK(m) 0
145 #ifndef S_ISPORT /* Solaris 10 and up */
146 # define S_ISPORT(m) 0
151 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
153 # define S_ISREG(m) 0
159 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
161 # define S_ISSOCK(m) 0
167 # define S_TYPEISMQ(p) 0
171 # define S_TYPEISTMO(p) 0
177 # define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
179 # define S_TYPEISSEM(p) 0
185 # define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
187 # define S_TYPEISSHM(p) 0
191 /* high performance ("contiguous data") */
193 # define S_ISCTG(p) 0
196 /* Cray DMF (data migration facility): off line, with data */
198 # define S_ISOFD(p) 0
201 /* Cray DMF (data migration facility): off line, with no data */
203 # define S_ISOFL(p) 0
206 /* 4.4BSD whiteout */
208 # define S_ISWHT(m) 0
211 /* If any of the following are undefined,
212 define them to their de facto standard values. */
214 # define S_ISUID 04000
217 # define S_ISGID 02000
220 /* S_ISVTX is a common extension to POSIX. */
222 # define S_ISVTX 01000
225 #if !S_IRUSR && S_IREAD
226 # define S_IRUSR S_IREAD
229 # define S_IRUSR 00400
232 # define S_IRGRP (S_IRUSR >> 3)
235 # define S_IROTH (S_IRUSR >> 6)
238 #if !S_IWUSR && S_IWRITE
239 # define S_IWUSR S_IWRITE
242 # define S_IWUSR 00200
245 # define S_IWGRP (S_IWUSR >> 3)
248 # define S_IWOTH (S_IWUSR >> 6)
251 #if !S_IXUSR && S_IEXEC
252 # define S_IXUSR S_IEXEC
255 # define S_IXUSR 00100
258 # define S_IXGRP (S_IXUSR >> 3)
261 # define S_IXOTH (S_IXUSR >> 6)
265 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
268 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
271 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
274 /* S_IXUGO is a common extension to POSIX. */
276 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
280 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
291 /* mingw does not support symlinks, therefore it does not have lstat. But
292 without links, stat does just fine. */
294 # elif @REPLACE_LSTAT@
296 # define lstat rpl_lstat
297 extern int rpl_lstat (const char *name, struct stat *buf);
299 #elif defined GNULIB_POSIXCHECK
301 # define lstat(p,b) \
302 (GL_LINK_WARNING ("lstat is unportable - " \
303 "use gnulib module lstat for portability"), \
310 # define mkdir rpl_mkdir
311 extern int mkdir (char const *name, mode_t mode);
313 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
314 Additionally, it declares _mkdir (and depending on compile flags, an
315 alias mkdir), only in the nonstandard <io.h>, which is included above. */
316 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
319 rpl_mkdir (char const *name, mode_t mode)
321 return _mkdir (name);
324 # define mkdir rpl_mkdir
329 /* Declare BSD extensions. */
332 /* Change the mode of FILENAME to MODE, without dereferencing it if FILENAME
333 denotes a symbolic link. */
335 /* The lchmod replacement follows symbolic links. Callers should take
336 this into account; lchmod should be applied only to arguments that
337 are known to not be symbolic links. On hosts that lack lchmod,
338 this can lead to race conditions between the check and the
339 invocation of lchmod, but we know of no workarounds that are
340 reliable in general. You might try requesting support for lchmod
341 from your operating system supplier. */
342 # define lchmod chmod
344 # if 0 /* assume already declared */
345 extern int lchmod (const char *filename, mode_t mode);
347 #elif defined GNULIB_POSIXCHECK
349 # define lchmod(f,m) \
350 (GL_LINK_WARNING ("lchmod is unportable - " \
351 "use gnulib module lchmod for portability"), \
361 #endif /* _GL_SYS_STAT_H */
362 #endif /* _GL_SYS_STAT_H */