diff options
Diffstat (limited to 'usr.bin/truss/powerpc-freebsd.c')
-rw-r--r-- | usr.bin/truss/powerpc-freebsd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/truss/powerpc-freebsd.c b/usr.bin/truss/powerpc-freebsd.c index 90c3663..6a245df 100644 --- a/usr.bin/truss/powerpc-freebsd.c +++ b/usr.bin/truss/powerpc-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 powerpc_fetch_args(struct trussinfo *trussinfo, u_int narg) { @@ -113,8 +112,7 @@ powerpc_fetch_retval(struct trussinfo *trussinfo, long *retval, int *errorp) static struct procabi powerpc_freebsd = { "FreeBSD ELF32", - syscallnames, - nitems(syscallnames), + FREEBSD, powerpc_fetch_args, powerpc_fetch_retval }; |