Deleted Added
full compact
systm.h (17975) systm.h (18277)
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)systm.h 8.7 (Berkeley) 3/29/95
39 * $Id: systm.h,v 1.42 1996/08/22 03:50:33 julian Exp $
39 * $Id: systm.h,v 1.43 1996/08/31 16:57:54 bde Exp $
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/cpufunc.h>
46#include <machine/stdarg.h>
47

--- 62 unchanged lines hidden (view full) ---

110int nullop __P((void));
111int eopnotsupp __P((void));
112int einval __P((void));
113int seltrue __P((dev_t dev, int which, struct proc *p));
114int ureadc __P((int, struct uio *));
115void *hashinit __P((int count, int type, u_long *hashmask));
116void *phashinit __P((int count, int type, u_long *nentries));
117
40 */
41
42#ifndef _SYS_SYSTM_H_
43#define _SYS_SYSTM_H_
44
45#include <machine/cpufunc.h>
46#include <machine/stdarg.h>
47

--- 62 unchanged lines hidden (view full) ---

110int nullop __P((void));
111int eopnotsupp __P((void));
112int einval __P((void));
113int seltrue __P((dev_t dev, int which, struct proc *p));
114int ureadc __P((int, struct uio *));
115void *hashinit __P((int count, int type, u_long *hashmask));
116void *phashinit __P((int count, int type, u_long *nentries));
117
118__dead void panic __P((const char *, ...)) __dead2;
119__dead void boot __P((int)) __dead2;
118void panic __P((const char *, ...)) __dead2;
119void boot __P((int)) __dead2;
120void cpu_boot __P((int));
121void tablefull __P((const char *));
122int addlog __P((const char *, ...));
123int kvprintf __P((char const *, void (*)(int, void*), void *, int, va_list));
124void log __P((int, const char *, ...));
125int printf __P((const char *, ...));
126int sprintf __P((char *buf, const char *, ...));
127void uprintf __P((const char *, ...));

--- 83 unchanged lines hidden ---
120void cpu_boot __P((int));
121void tablefull __P((const char *));
122int addlog __P((const char *, ...));
123int kvprintf __P((char const *, void (*)(int, void*), void *, int, va_list));
124void log __P((int, const char *, ...));
125int printf __P((const char *, ...));
126int sprintf __P((char *buf, const char *, ...));
127void uprintf __P((const char *, ...));

--- 83 unchanged lines hidden ---