patch: make *outfile extern
[platform/upstream/cdrkit.git] / genisoimage / vms.h
1 /*
2  * This file has been modified for the cdrkit suite.
3  *
4  * The behaviour and appearence of the program code below can differ to a major
5  * extent from the version distributed by the original author(s).
6  *
7  * For details, see Changelog file distributed with the cdrkit package. If you
8  * received this file from another source then ask the distributing person for
9  * a log of modifications.
10  *
11  */
12
13 /* @(#)vms.h    1.3 04/03/01 eric */
14 /*
15  * Header file genisoimage.h - assorted structure definitions and typecasts.
16  *
17  *   Written by Eric Youngdale (1993).
18  */
19
20 #ifdef VMS
21 #define stat(X, Y)      VMS_stat(X, Y)
22 #define lstat           VMS_stat
23
24 /* gmtime not available under VMS - make it look like we are in Greenwich */
25 #define gmtime  localtime
26
27 extern int      vms_write_one_file(char *filename, off_t size, FILE * outfile);
28
29 #endif