xref: /csrg-svn/old/lib2648/gdefault.c (revision 19791)
111474Sralph /*
2*19791Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19791Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19791Sdist  * specifies the terms and conditions for redistribution.
5*19791Sdist  */
6*19791Sdist 
7*19791Sdist #ifndef lint
8*19791Sdist static char sccsid[] = "@(#)gdefault.c	5.1 (Berkeley) 04/30/85";
9*19791Sdist #endif not lint
10*19791Sdist 
11*19791Sdist /*
1211474Sralph  * reset terminal to default graphics state
1311474Sralph  */
1411474Sralph 
1511474Sralph #include "2648.h"
1611474Sralph 
gdefault()1711474Sralph gdefault()
1811474Sralph {
1911474Sralph 	escseq(ESCM);
2011474Sralph 	outstr("r");
2111474Sralph }
22