1*21330Sdist /* 2*21330Sdist * Copyright (c) 1980 Regents of the University of California. 3*21330Sdist * All rights reserved. The Berkeley software License Agreement 4*21330Sdist * specifies the terms and conditions for redistribution. 5*21330Sdist */ 612942Ssam 7*21330Sdist #ifndef lint 8*21330Sdist static char sccsid[] = "@(#)pause.c 5.1 (Berkeley) 05/30/85"; 9*21330Sdist #endif not lint 10*21330Sdist 1112942Ssam /* 1212942Ssam * Backwards compatible pause. 1312942Ssam */ 1412942Ssam pause() 1512942Ssam { 1612942Ssam 1712942Ssam sigpause(sigblock(0)); 1812942Ssam } 19