xref: /csrg-svn/lib/libplot/imagen/close.c (revision 24991)
1*24991Ssam /*
2*24991Ssam  * Copyright (c) 1985 Regents of the University of California.
3*24991Ssam  * All rights reserved.  The Berkeley software License Agreement
4*24991Ssam  * specifies the terms and conditions for redistribution.
5*24991Ssam  */
6*24991Ssam 
7*24991Ssam #ifndef lint
8*24991Ssam static char sccsid[] = "@(#)close.c	5.1 (Berkeley) 09/21/85";
9*24991Ssam #endif not lint
10*24991Ssam 
11*24991Ssam #include "imp.h"
12*24991Ssam #include "imPcodes.h"
13*24991Ssam 
14*24991Ssam closepl(){
15*24991Ssam 	putch(imP_ENDPAGE);
16*24991Ssam 	fflush(stdout);
17*24991Ssam }
18