mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-04 07:27:54 +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;
|
||
|
}
|