1 /* @(#)limit.h	1.8 11/07/16 Copyright 1995-2008 J. Schilling */
2 /*
3  * limit.c
4  */
5 /*
6  * The contents of this file are subject to the terms of the
7  * Common Development and Distribution License, Version 1.0 only
8  * (the "License").  You may not use this file except in compliance
9  * with the License.
10  *
11  * See the file CDDL.Schily.txt in this distribution for details.
12  * A copy of the CDDL is also available via the Internet at
13  * http://www.opensource.org/licenses/cddl1.txt
14  *
15  * When distributing Covered Code, include this CDDL HEADER in each
16  * file and include the License file CDDL.Schily.txt from this distribution.
17  */
18 
19 extern	void	blimit		__PR((Argvec *vp, FILE **std, int flag));
20 extern	void	prtime		__PR((FILE **std, long sec, long usec));
21 extern	void	getpruself	__PR((struct rusage *prusage));
22 extern	void	getpruchld	__PR((struct rusage *prusage));
23 extern	void	btime		__PR((Argvec *vp, FILE **std, int flag));
24 extern	void	inittime	__PR((void));
25 extern	void	setstime	__PR((void));
26 extern	void	prtimes		__PR((FILE **std, struct rusage *prusage));
27 extern	void	rusagesub	__PR((struct rusage *pru1, struct rusage *pru2));
28 extern	void	rusageadd	__PR((struct rusage *pru1, struct rusage *pru2));
29 
30 /*
31  * in getrusage.c
32  */
33 #ifndef	HAVE_GETRUSAGE
34 extern	int	getrusage	__PR((int who, struct rusage *rusage));
35 #endif
36