diff options
Diffstat (limited to 'usr.bin/truss/powerpc64-freebsd.c')
-rw-r--r-- | usr.bin/truss/powerpc64-freebsd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/truss/powerpc64-freebsd.c b/usr.bin/truss/powerpc64-freebsd.c index fafaa1b..68a0b5d 100644 --- a/usr.bin/truss/powerpc64-freebsd.c +++ b/usr.bin/truss/powerpc64-freebsd.c @@ -37,11 +37,10 @@ __FBSDID("$FreeBSD$"); #include <machine/frame.h> #include <stdio.h> +#include <sysdecode.h> #include "truss.h" -#include "freebsd_syscalls.h" - static int powerpc64_fetch_args(struct trussinfo *trussinfo, u_int narg) { @@ -109,8 +108,7 @@ powerpc64_fetch_retval(struct trussinfo *trussinfo, long *retval, int *errorp) static struct procabi powerpc64_freebsd = { "FreeBSD ELF64", - syscallnames, - nitems(syscallnames), + FREEBSD, powerpc64_fetch_args, powerpc64_fetch_retval }; |