date and time created 91/03/07 20:27:46 by bostic
[unix-history] / usr / src / bin / sh / funcs / suspend
CommitLineData
a77cf851
KB
1# Copyright (c) 1991 The Regents of the University of California.
2# All rights reserved.
3#
4# This code is derived from software contributed to Berkeley by
5# Kenneth Almquist.
6#
7# %sccs.include.redist.sh%
8#
9# @(#)suspend 5.1 (Berkeley) %G%
10
11suspend() {
12 local -
13 set +j
14 kill -TSTP 0
15}