1 /*
2  * Only for building on VMS
3  */
4 #ifndef GNUPLOT_VMS_H
5 #define GNUPLOT_VMS_H
6 
7 char *vms_init();
8 void vms_reset();
9 void term_mode_tek();
10 void term_mode_native();
11 void term_pasthru();
12 void term_nopasthru();
13 void fflush_binary();
14 
15 #ifdef FOPEN_BINARY
16 # undef FOPEN_BINARY
17 #endif
18 # define FOPEN_BINARY(file) fopen(file, "wb", "rfm=fix", "bls=512", "mrs=512")
19 
20 #endif /* GNUPLOT_VMS_H */
21