off_t is now a quad. 0L looses.
[unix-history] / usr / src / bin / sh / trap.h
CommitLineData
718e74ba
KB
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * %sccs.include.redist.c%
9 *
10 * @(#)trap.h 5.1 (Berkeley) %G%
11 */
12
13extern int pendingsigs;
14
15#ifdef __STDC__
16void clear_traps(void);
17int setsignal(int);
18void ignoresig(int);
19void dotrap(void);
20void setinteractive(int);
21void exitshell(int);
22#else
23void clear_traps();
24int setsignal();
25void ignoresig();
26void dotrap();
27void setinteractive();
28void exitshell();
29#endif