prgregset_t changed type from being a typedef of struct reg to an

array of one element of type struct reg. Change the argument to
libc_r_md_getgregs() accordingly.
This commit is contained in:
marcel 2004-07-19 16:54:52 +00:00
parent da5d0cbbcc
commit 382de01fbd

View File

@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$");
#include <machine/setjmp.h>
void
libc_r_md_getgregs(jmp_buf jb, prgregset_t *r)
libc_r_md_getgregs(jmp_buf jb, prgregset_t r)
{
r->r_regs[R_V0] = jb->_jb[4];
r->r_regs[R_T0] = jb->_jb[5];