Prototype freebsd_syscall_intern() in freebsd_machdep.h so that

freebsd_exec.c has access to it.
This commit is contained in:
thorpej 2000-12-18 23:29:46 +00:00
parent ad4f387a4c
commit 895f21a679
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_syscall.c,v 1.2 2000/12/18 20:49:17 jdolecek Exp $ */
/* $NetBSD: freebsd_syscall.c,v 1.3 2000/12/18 23:29:47 thorpej Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@ -57,7 +57,6 @@
#include <machine/psl.h>
#include <machine/userret.h>
void freebsd_syscall_intern __P((struct proc *));
void freebsd_syscall_plain __P((struct trapframe));
void freebsd_syscall_fancy __P((struct trapframe));

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_machdep.h,v 1.2 1998/09/11 12:50:07 mycroft Exp $ */
/* $NetBSD: freebsd_machdep.h,v 1.3 2000/12/18 23:29:46 thorpej Exp $ */
/*
* Copyright (c) 1986, 1989, 1991, 1993
@ -158,5 +158,6 @@ struct freebsd_ptrace_reg {
#define FREEBSD___LDPGSZ 4096
void freebsd_sendsig __P((sig_t, int, sigset_t *, u_long));
void freebsd_syscall_intern __P((struct proc *));
#endif /* _FREEBSD_MACHDEP_H */