xref: /csrg-svn/lib/libplot/hp2648/close.c (revision 15447)
1*15447Sralph #ifndef lint
2*15447Sralph static char sccsid[] = "@(#)close.c	4.1 (Berkeley) 11/10/83";
3*15447Sralph #endif
4*15447Sralph 
5*15447Sralph #include "hp2648.h"
6*15447Sralph 
7*15447Sralph closepl()
8*15447Sralph {
9*15447Sralph 	putchar('Z');
10*15447Sralph 	fflush(stdout);
11*15447Sralph 	if ( shakehands == TRUE ) {
12*15447Sralph 		stty(fildes, &sarg);
13*15447Sralph 		close(fildes);
14*15447Sralph 	}
15*15447Sralph }
16