Initial creation of sourceware repository

This commit is contained in:
Stan Shebs 1999-04-16 01:35:26 +00:00
parent cd946cff9e
commit c906108c21
2470 changed files with 976797 additions and 0 deletions

View file

@ -0,0 +1,35 @@
#include <stdio.h>
/* Test "return" command. */
func1 ()
{
printf("in func1\n");
}
int
func2 ()
{
return -5;
}
double
func3 ()
{
return -5.0;
}
int tmp2;
double tmp3;
main ()
{
#ifdef usestubs
set_debug_traps();
breakpoint();
#endif
func1 ();
printf("in main after func1\n");
tmp2 = func2 ();
tmp3 = func3 ();
printf("exiting\n");
}