mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 16:32:25 +01:00
6f50ceba0f
Yggdrasil Computing Inc. This is a useful concession to us CDROM mastering weenies out here. Obtained from: Yggdrasil Computing, Inc.
20 lines
440 B
C
20 lines
440 B
C
/*
|
|
* Header file mkisofs.h - assorted structure definitions and typecasts.
|
|
|
|
Written by Eric Youngdale (1993).
|
|
|
|
*/
|
|
|
|
#ifdef VMS
|
|
#define stat(X,Y) VMS_stat(X,Y)
|
|
#define lstat VMS_stat
|
|
|
|
/* gmtime not available under VMS - make it look like we are in Greenwich */
|
|
#define gmtime localtime
|
|
|
|
#define S_ISBLK(X) (0)
|
|
#define S_ISCHR(X) (0)
|
|
#define S_ISREG(X) (((X) & S_IFMT) == S_IFREG)
|
|
#define S_ISDIR(X) (((X) & S_IFMT) == S_IFDIR)
|
|
#endif
|