import gdb-1999-06-28 snapshot

This commit is contained in:
Jason Molenda
1999-06-28 23:04:32 +00:00
parent 9cd2c67bac
commit 74cf13956f
20 changed files with 2620 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#ifdef PROTOTYPES
int main (void)
#else
main()
#endif
{
printf("Hello from vforked-prog...\n");
return 0;
}