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 Moolenaar 2004-07-19 16:54:52 +00:00
parent 788195c186
commit c465e9a1f0
1 changed files with 1 additions and 1 deletions

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];