1 /* $Id: term.c,v 1.8 2020-09-29 05:02:39 phil Exp $ */
2 
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif /* HAVE_CONFIG_H defined */
6 
7 #include <stdio.h>
8 
9 #include "h.h"
10 #include "snotypes.h"
11 #include "lib.h"
12 
13 /*
14  * return a stdio stream for TERMINAL input variable
15  * VMS version.
16  */
17 
18 FILE *
term_input(void)19 term_input(void) {
20     return fopen("SYS$COMMAND:", "r");
21 }
22