2017-01-01 07:50:51 +01:00
|
|
|
/* Copyright 2004-2017 Free Software Foundation, Inc.
|
2004-02-19 23:55:50 +01:00
|
|
|
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2004-02-19 23:55:50 +01:00
|
|
|
(at your option) any later version.
|
2007-08-23 20:08:50 +02:00
|
|
|
|
2004-02-19 23:55:50 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2007-08-23 20:08:50 +02:00
|
|
|
|
2004-02-19 23:55:50 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-02-19 23:55:50 +01:00
|
|
|
|
|
|
|
Please email any bugs, comments, and/or additions to this file to:
|
|
|
|
bug-gdb@gnu.org
|
|
|
|
|
|
|
|
This file is part of the gdb testsuite. */
|
|
|
|
|
2005-11-02 12:03:02 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2004-02-19 23:55:50 +01:00
|
|
|
sub1 ()
|
|
|
|
{
|
|
|
|
printf ("In sub1\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub2 ()
|
|
|
|
{
|
|
|
|
printf ("In sub2\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
sub1 ();
|
|
|
|
sub2 ();
|
|
|
|
}
|