121330Sdist /* 221330Sdist * Copyright (c) 1980 Regents of the University of California. 321330Sdist * All rights reserved. The Berkeley software License Agreement 421330Sdist * specifies the terms and conditions for redistribution. 521330Sdist */ 612942Ssam 726518Sdonn #if defined(LIBC_SCCS) && !defined(lint) 8*33612Sbostic static char sccsid[] = "@(#)pause.c 5.4 (Berkeley) 02/27/88"; 926518Sdonn #endif LIBC_SCCS and not lint 1021330Sdist 1112942Ssam /* 1212942Ssam * Backwards compatible pause. 1312942Ssam */ 1412942Ssam pause() 1512942Ssam { 16*33612Sbostic long sigblock(); 1712942Ssam 1832298Sbostic sigpause(sigblock(0L)); 1912942Ssam } 20