xref: /openbsd/gnu/usr.sbin/mkhybrid/src/vms.h (revision 898184e3)
1 /*
2  * Header file mkisofs.h - assorted structure definitions and typecasts.
3 
4    Written by Eric Youngdale (1993).
5 
6  * $Id: vms.h,v 1.1 2000/10/10 20:40:21 beck Exp $
7  */
8 
9 #ifdef VMS
10 #define stat(X,Y) VMS_stat(X,Y)
11 #define lstat VMS_stat
12 
13 /* gmtime not available under VMS - make it look like we are in Greenwich */
14 #define gmtime localtime
15 
16 #define S_ISBLK(X) (0)
17 #define S_ISCHR(X) (0)
18 #define S_ISREG(X)  (((X) & S_IFMT) == S_IFREG)
19 #define S_ISDIR(X)  (((X) & S_IFMT) == S_IFDIR)
20 #endif
21