1 /* system-dependent definitions for fileutils programs.
2 Copyright (C) 89, 91, 92, 93, 1994 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program 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 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* Include sys/types.h before this file. */
22 #ifdef STAT_MACROS_BROKEN
33 #endif /* STAT_MACROS_BROKEN. */
36 #define S_IFMT 0170000
38 #if !defined(S_ISBLK) && defined(S_IFBLK)
39 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
41 #if !defined(S_ISCHR) && defined(S_IFCHR)
42 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
44 #if !defined(S_ISDIR) && defined(S_IFDIR)
45 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
47 #if !defined(S_ISREG) && defined(S_IFREG)
48 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
50 #if !defined(S_ISFIFO) && defined(S_IFIFO)
51 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
53 #if !defined(S_ISLNK) && defined(S_IFLNK)
54 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
56 #if !defined(S_ISSOCK) && defined(S_IFSOCK)
57 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
59 #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
60 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
61 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
63 #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
64 #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
68 #define S_IEXEC S_IXUSR
73 #define S_IXUSR S_IEXEC
76 #define S_IXGRP (S_IEXEC >> 3)
79 #define S_IXOTH (S_IEXEC >> 6)
83 #if !defined(HAVE_MKFIFO)
84 #define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0))
87 #ifdef HAVE_SYS_PARAM_H
88 #include <sys/param.h>
91 /* <unistd.h> should be included before any preprocessor test
98 #define STDIN_FILENO 0
101 #ifndef STDOUT_FILENO
102 #define STDOUT_FILENO 1
105 #ifndef STDERR_FILENO
106 #define STDERR_FILENO 2
111 /* FIXME: Don't use _POSIX_VERSION. */
112 #ifndef _POSIX_VERSION
116 #ifdef TM_IN_SYS_TIME
117 #include <sys/time.h>
122 /* Since major is a function on SVR4, we can't use `ifndef major'. */
123 #ifdef MAJOR_IN_MKDEV
124 #include <sys/mkdev.h>
127 #ifdef MAJOR_IN_SYSMACROS
128 #include <sys/sysmacros.h>
131 #ifdef major /* Might be defined in sys/types.h. */
136 #define major(dev) (((dev) >> 8) & 0xff)
137 #define minor(dev) ((dev) & 0xff)
138 #define makedev(maj, min) (((maj) << 8) | (min))
146 /* Some systems (even some that do have <utime.h>) don't declare this
147 structure anywhere. */
148 #ifndef HAVE_STRUCT_UTIMBUF
156 /* Don't use bcopy! Use memmove if source and destination may overlap,
160 # if !STDC_HEADERS && HAVE_MEMORY_H
165 # include <strings.h>
175 #define getopt system_getopt
178 #else /* not STDC_HEADERS */
180 #endif /* STDC_HEADERS */
185 #include <sys/file.h>
202 # define NLENGTH(direct) (strlen((direct)->d_name))
203 #else /* not HAVE_DIRENT_H */
204 # define dirent direct
205 # define NLENGTH(direct) ((direct)->d_namlen)
206 # ifdef HAVE_SYS_NDIR_H
207 # include <sys/ndir.h>
208 # endif /* HAVE_SYS_NDIR_H */
209 # ifdef HAVE_SYS_DIR_H
210 # include <sys/dir.h>
211 # endif /* HAVE_SYS_DIR_H */
214 # endif /* HAVE_NDIR_H */
215 #endif /* HAVE_DIRENT_H */
218 /* Fake a return value. */
219 #define CLOSEDIR(d) (closedir (d), 0)
221 #define CLOSEDIR(d) closedir (d)
224 /* Get or fake the disk device blocksize.
225 Usually defined by sys/param.h (if at all). */
228 #define DEV_BSIZE BSIZE
230 #define DEV_BSIZE 4096
232 #endif /* !DEV_BSIZE */
234 /* Extract or fake data from a `struct stat'.
235 ST_BLKSIZE: Optimal I/O blocksize for the file, in bytes.
236 ST_NBLOCKS: Number of 512-byte blocks in the file
237 (including indirect blocks). */
238 #ifndef HAVE_ST_BLOCKS
239 # define ST_BLKSIZE(statbuf) DEV_BSIZE
240 # if defined(_POSIX_SOURCE) || !defined(BSIZE) /* fileblocks.c uses BSIZE. */
241 # define ST_NBLOCKS(statbuf) (((statbuf).st_size + 512 - 1) / 512)
242 # else /* !_POSIX_SOURCE && BSIZE */
243 # define ST_NBLOCKS(statbuf) (st_blocks ((statbuf).st_size))
244 # endif /* !_POSIX_SOURCE && BSIZE */
245 #else /* HAVE_ST_BLOCKS */
246 /* Some systems, like Sequents, return st_blksize of 0 on pipes. */
247 # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \
248 ? (statbuf).st_blksize : DEV_BSIZE)
249 # if defined(hpux) || defined(__hpux__) || defined(__hpux)
250 /* HP-UX counts st_blocks in 1024-byte units.
251 This loses when mixing HP-UX and BSD filesystems with NFS. */
252 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks * 2)
254 # if defined(_AIX) && defined(_I386)
255 /* AIX PS/2 counts st_blocks in 4K units. */
256 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks * 8)
257 # else /* not AIX PS/2 */
258 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks)
259 # endif /* not AIX PS/2 */
261 #endif /* HAVE_ST_BLOCKS */
263 /* Convert B 512-byte blocks to kilobytes if K is nonzero,
264 otherwise return it unchanged. */
265 #define convert_blocks(b, k) ((k) ? ((b) + 1) / 2 : (b))
268 #define RETSIGTYPE void
273 # define alloca __builtin_alloca
275 # ifdef HAVE_ALLOCA_H
279 /* AIX alloca decl has to be the first thing in the file, bletch! */
287 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
290 #define ISASCII(c) isascii(c)
294 #define ISBLANK(c) (ISASCII (c) && isblank (c))
296 #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
299 #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
301 #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
304 #define ISPRINT(c) (ISASCII (c) && isprint (c))
305 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
306 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
307 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
308 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
309 #define ISLOWER(c) (ISASCII (c) && islower (c))
310 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
311 #define ISSPACE(c) (ISASCII (c) && isspace (c))
312 #define ISUPPER(c) (ISASCII (c) && isupper (c))
313 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
316 #if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
317 #define __P(args) args
321 #endif /* Not __P. */
323 /* Take care of NLS matters. */
329 # define setlocale(Category, Locale) /* empty */
333 # include <libintl.h>
334 # define _(Text) gettext (Text)
336 # define bindtextdomain(Domain, Directory) /* empty */
337 # define textdomain(Domain) /* empty */
338 # define _(Text) Text