#include <stdio.h> void fun(void); int main (void) { fun(); fun(); return 0; } void fun(void) { printf("****\n"); printf("-----\n"); }