xref: /csrg-svn/old/lib2648/gdefault.c (revision 11474)
1*11474Sralph /*	gdefault.c	4.1	83/03/09	*/
2*11474Sralph /*
3*11474Sralph  * reset terminal to default graphics state
4*11474Sralph  */
5*11474Sralph 
6*11474Sralph #include "2648.h"
7*11474Sralph 
8*11474Sralph gdefault()
9*11474Sralph {
10*11474Sralph 	escseq(ESCM);
11*11474Sralph 	outstr("r");
12*11474Sralph }
13