diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-05 00:05:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-05 00:05:23 +0000 |
commit | 4be3c0dc701e141c438c894de91074f19c4e8987 (patch) | |
tree | e02ecb6f5a668933371dee29f48252d14dd931eb | |
parent | 74cc4ba3afd6df5439932246de457115b2d877af (diff) |
missing includes
-rw-r--r-- | usr.bin/pmdb/arch/powerpc/powerpc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/pmdb/arch/powerpc/powerpc.c b/usr.bin/pmdb/arch/powerpc/powerpc.c index fe7d5acbe91..4abee588332 100644 --- a/usr.bin/pmdb/arch/powerpc/powerpc.c +++ b/usr.bin/pmdb/arch/powerpc/powerpc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: powerpc.c,v 1.3 2002/07/22 02:54:23 art Exp $ */ +/* $OpenBSD: powerpc.c,v 1.4 2009/10/05 00:05:22 deraadt Exp $ */ /* * Copyright (c) 2002 Dale Rahn <drahn@openbsd.org> * All rights reserved. @@ -25,11 +25,14 @@ */ -#include <stddef.h> #include <sys/param.h> #include <sys/ptrace.h> #include <machine/reg.h> #include <machine/frame.h> + +#include <stddef.h> +#include <string.h> + #include "pmdb.h" static const char *md_reg_names[] = { |