1 /* pause.c 4.1 83/06/09 */ 2 3 /* 4 * Backwards compatible pause. 5 */ 6 pause() 7 { 8 9 sigpause(sigblock(0)); 10 } 11