blob: 1d7cfc848b88f8e06165f3f41bf71de736c6e6ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_libc
#define import_xnames
#include <iraf.h>
/* C_TTYCDES -- Close the TTY descriptor.
*/
void
c_ttycdes (
XINT tty /* SPP pointer to descriptor */
)
{
XINT x_tty = tty;
TTYCDES (&x_tty);
}
|