mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-12 06:26:17 +00:00
12 lines
132 B
C
12 lines
132 B
C
#include <stdio.h>
|
|
|
|
#ifdef PROTOTYPES
|
|
int main (void)
|
|
#else
|
|
main()
|
|
#endif
|
|
{
|
|
printf("Hello from vforked-prog...\n");
|
|
return 0;
|
|
}
|