import gdb-1999-06-28 snapshot

This commit is contained in:
Jason Molenda
1999-06-28 16:06:02 +00:00
parent 303f629d61
commit 085dd6e638
146 changed files with 8298 additions and 4750 deletions

View File

@@ -2,15 +2,20 @@
* <leaves-core-file-on-quit> bugs.
*/
#include <stdio.h>
#include <stdlib.h>
#ifdef PROTOTYPES
int callee (int x)
#else
int callee( x )
int x;
#endif
{
int y = x * x;
return (y - 2);
}
main()
int main()
{
int *p;
@@ -24,4 +29,5 @@ main()
}
printf( " Goodbye!\n" );
return 0;
}