eci/tests/43_void_param.c
2014-01-16 21:52:25 +01:00

11 lines
85 B
C

#include <stdio.h>
void fred(void)
{
printf("yo\n");
}
fred();
void main() {}