| Index: gdb/testsuite/gdb.mi/mi-dprintf.c
|
| diff --git a/gdb/testsuite/gdb.base/dprintf.c b/gdb/testsuite/gdb.mi/mi-dprintf.c
|
| similarity index 88%
|
| copy from gdb/testsuite/gdb.base/dprintf.c
|
| copy to gdb/testsuite/gdb.mi/mi-dprintf.c
|
| index f695ff1306b138d6cad54731809f72a8f8e74313..a6700dc367a46b16b5d78a285d58a5e5e8d2b788 100644
|
| --- a/gdb/testsuite/gdb.base/dprintf.c
|
| +++ b/gdb/testsuite/gdb.mi/mi-dprintf.c
|
| @@ -1,6 +1,7 @@
|
| /* This testcase is part of GDB, the GNU debugger.
|
|
|
| - Copyright (C) 2012 Free Software Foundation, Inc.
|
| + Copyright (C) 2013 Free Software Foundation, Inc.
|
| + Contributed by Hui Zhu <hui@codesourcery.com>
|
|
|
| This program is free software; you can redistribute it and/or modify
|
| it under the terms of the GNU General Public License as published by
|
| @@ -16,6 +17,7 @@
|
| along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
| #include <stdio.h>
|
| +#include <stdlib.h>
|
|
|
| static int g;
|
|
|
| @@ -42,13 +44,12 @@ main (int argc, char *argv[])
|
| return g;
|
| }
|
|
|
| -#include <stdlib.h>
|
| -/* Make sure function 'malloc' is linked into program. One some bare-metal
|
| +/* Make sure function 'malloc' is linked into program. On some bare-metal
|
| port, if we don't use 'malloc', it will not be linked in program. 'malloc'
|
| is needed, otherwise we'll see such error message
|
| -
|
| evaluation of this expression requires the program to have a function
|
| "malloc". */
|
| +
|
| void
|
| bar (void)
|
| {
|
|
|