freebsd-dev/gnu/usr.bin/mkisofs/vms.h
Jordan K. Hubbard 6f50ceba0f Original virgin sources for version 1.2 of mkisofs, by Eric Youngdale of
Yggdrasil Computing Inc.  This is a useful concession to us CDROM mastering
weenies out here.
Obtained from: Yggdrasil Computing, Inc.
1995-02-12 08:00:42 +00:00

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