Add prototypes for process_read_regs, etc. (fix warnings)

This commit is contained in:
gwr 1996-12-17 19:24:31 +00:00
parent d6e25cae40
commit a25e8be772
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: reg.h,v 1.11 1995/03/26 17:08:38 briggs Exp $ */
/* $NetBSD: reg.h,v 1.12 1996/12/17 19:24:31 gwr Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -97,6 +97,11 @@ struct fpreg {
*/
#define R0 D1
#define R1 A0
struct proc;
int process_read_regs __P((struct proc *, struct reg *));
int process_read_fpregs __P((struct proc *, struct fpreg *));
#endif
#endif /* !_M68K_REG_H_ */