1 /* @(#)vms.h	1.3 04/03/01 eric */
2 /*
3  * Header file mkisofs.h - assorted structure definitions and typecasts.
4  *
5  *   Written by Eric Youngdale (1993).
6  */
7 
8 #ifdef VMS
9 #define	stat(X, Y)	VMS_stat(X, Y)
10 #define	lstat		VMS_stat
11 
12 /* gmtime not available under VMS - make it look like we are in Greenwich */
13 #define	gmtime	localtime
14 
15 extern int	vms_write_one_file(char *filename, off_t size, FILE * outfile);
16 
17 #endif
18