Select Git revision
function-call.c
Forked from
Peter Gerwinski / es
225 commits behind the upstream repository.
-
Peter Gerwinski authoredPeter Gerwinski authored
function-call.c 117 B
#include <stdio.h>
void hello (void)
{
printf ("Hello, world!\n");
}
int main (void)
{
hello ();
return 0;
}