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*32298Sbostic static char sccsid[] = "@(#)pause.c 5.3 (Berkeley) 09/30/87"; 926518Sdonn #endif LIBC_SCCS and not lint 1021330Sdist 1112942Ssam /* 1212942Ssam * Backwards compatible pause. 1312942Ssam */ 1412942Ssam pause() 1512942Ssam { 1612942Ssam 17*32298Sbostic sigpause(sigblock(0L)); 1812942Ssam } 19