2004-08-26 Michael Chastain <mec.gnu@mindspring.com>

* gdb.mi/basics.c: Include <stdio.h>.
	* gdb.mi/pthreads.c: Include <stdlib.h>.
	* gdb.mi/var-cmd.c: Include <stdlib.h>.
This commit is contained in:
Michael Chastain 2004-08-26 15:13:17 +00:00
parent a96404235b
commit 5a2e8882db
4 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-08-26 Michael Chastain <mec.gnu@mindspring.com>
* gdb.mi/basics.c: Include <stdio.h>.
* gdb.mi/pthreads.c: Include <stdlib.h>.
* gdb.mi/var-cmd.c: Include <stdlib.h>.
2004-08-26 Michael Chastain <mec.gnu@mindspring.com>
* gdb.threads/schedlock.c: Add copyright notice.

View File

@ -1,4 +1,4 @@
/* Copyright 1999, 2000
/* Copyright 1999, 2000, 2004
Free Software Foundation, Inc.
This file is part of GDB.
@ -23,6 +23,8 @@
* on function calls. Useful to test printing frames, stepping, etc.
*/
#include <stdio.h>
int callee4 (void)
{
int A=1;

View File

@ -24,6 +24,7 @@
Boston, MA 02111-1307, USA. */
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
/* Under OSF 2.0 & 3.0 and HPUX 10, the second arg of pthread_create

View File

@ -1,4 +1,4 @@
/* Copyright 1999 Free Software Foundation, Inc.
/* Copyright 1999, 2004 Free Software Foundation, Inc.
This file is part of GDB.
@ -17,6 +17,8 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include <stdlib.h>
struct _simple_struct {
int integer;
unsigned int unsigned_integer;