xref: /original-bsd/old/lib2648/zoomout.c (revision b2da6d6d)
1*b2da6d6dSdist /*
2*b2da6d6dSdist  * Copyright (c) 1980 Regents of the University of California.
3*b2da6d6dSdist  * All rights reserved.  The Berkeley software License Agreement
4*b2da6d6dSdist  * specifies the terms and conditions for redistribution.
5*b2da6d6dSdist  */
6*b2da6d6dSdist 
7*b2da6d6dSdist #ifndef lint
8*b2da6d6dSdist static char sccsid[] = "@(#)zoomout.c	5.1 (Berkeley) 04/26/85";
9*b2da6d6dSdist #endif not lint
10*b2da6d6dSdist 
11cc3fb448Sralph /*
12cc3fb448Sralph  * zoomout: zoom to level 1.
13cc3fb448Sralph  */
14cc3fb448Sralph 
zoomout()15cc3fb448Sralph zoomout()
16cc3fb448Sralph {
17cc3fb448Sralph 	zoomn(1);
18cc3fb448Sralph }
19