121330Sdist /* 238473Sbostic * Copyright (c) 1983 The Regents of the University of California. 338473Sbostic * All rights reserved. 438473Sbostic * 5*42625Sbostic * %sccs.include.redist.c% 621330Sdist */ 712942Ssam 826518Sdonn #if defined(LIBC_SCCS) && !defined(lint) 9*42625Sbostic static char sccsid[] = "@(#)pause.c 5.6 (Berkeley) 06/01/90"; 1038473Sbostic #endif /* LIBC_SCCS and not lint */ 1121330Sdist 1212942Ssam /* 1312942Ssam * Backwards compatible pause. 1412942Ssam */ 1512942Ssam pause() 1612942Ssam { 1733612Sbostic long sigblock(); 1812942Ssam 1932298Sbostic sigpause(sigblock(0L)); 2012942Ssam } 21