blob: 6cf4a9a4151e6b040cef09aee76f9c724875feef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#include "ratdef.h"
FILE *_fdtofile[10];
/*
* Ratfor initialization routine. To be called as the first
* executable statement of every program using the tools
* subroutines.
*/
void INITST()
{
_fdtofile[0] = stdin;
_fdtofile[1] = stdout;
_fdtofile[2] = stderr;
}
|