blob: 8d5fe072a94468b43d043a999b0194bdac319f50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_libc
#define import_xnames
#include <iraf.h>
/* C_GFLUSH -- Flush any buffered graphics output.
*/
void
c_gflush (
int stream /* graphics stream */
)
{
XINT x_stream = stream;
GTR_GFLUSH (&x_stream);
}
|