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