add tzset.3, mktime.3 links to ctime.3
[unix-history] / usr / src / lib / libc / gen / pause.c
CommitLineData
bb0cfa24 1/*
bfd3a734
KB
2 * Copyright (c) 1983 The Regents of the University of California.
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
bb0cfa24
DF
6 */
7
2ce81398 8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)pause.c 5.6 (Berkeley) %G%";
bfd3a734 10#endif /* LIBC_SCCS and not lint */
5942f1c5
SL
11
12/*
13 * Backwards compatible pause.
14 */
15pause()
16{
fa3b530a 17 long sigblock();
5942f1c5 18
f0995b5e 19 sigpause(sigblock(0L));
5942f1c5 20}