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 7*26518Sdonn #if defined(LIBC_SCCS) && !defined(lint) 8*26518Sdonn static char sccsid[] = "@(#)pause.c 5.2 (Berkeley) 03/09/86"; 9*26518Sdonn #endif LIBC_SCCS and not lint 1021330Sdist 1112942Ssam /* 1212942Ssam * Backwards compatible pause. 1312942Ssam */ 1412942Ssam pause() 1512942Ssam { 1612942Ssam 1712942Ssam sigpause(sigblock(0)); 1812942Ssam } 19