diff options
author | Michael Chastain <mec@google.com> | 2004-08-05 07:28:20 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2004-08-05 07:28:20 +0000 |
commit | e425eb2b8280893bc3635906ee20b47d21ca02f8 (patch) | |
tree | a1fe88a41897df9254c9897ffd48133a5df9cbef /gdb/testsuite/gdb.base/freebpcmd.c | |
parent | cb9aaed5eed5265cd8b9930735c86b980c5f8b84 (diff) | |
download | binutils-gdb-e425eb2b8280893bc3635906ee20b47d21ca02f8.tar.gz |
2004-08-05 Michael Chastain <mec.gnu@mindspring.com>
* gdb.base/freebpcmd.c: Include <stdio.h>.
* gdb.base/long_long.c: Include <string.h>.
* gdb.base/sigaltstack.c: Include <stdlib.h> <string.h>.
* gdb.base/siginfo.c: Include <string.h>.
* gdb.base/sigstep.c: Include <string.h>.
Diffstat (limited to 'gdb/testsuite/gdb.base/freebpcmd.c')
-rw-r--r-- | gdb/testsuite/gdb.base/freebpcmd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/freebpcmd.c b/gdb/testsuite/gdb.base/freebpcmd.c index 765e12d2ca8..36cbcbea29d 100644 --- a/gdb/testsuite/gdb.base/freebpcmd.c +++ b/gdb/testsuite/gdb.base/freebpcmd.c @@ -1,5 +1,5 @@ /* Test program for GDB crashes while doing bp commands that continue inferior. - Copyright 2003 Free Software Foundation, Inc. + Copyright 2003, 2004 Free Software Foundation, Inc. This file is part of the gdb testsuite. @@ -18,6 +18,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <stdio.h> + int main (int argc, char **argv) { |