OVMS3-idf/examples/system/gcov/components/sample/some_funcs.c

11 lines
132 B
C
Raw Normal View History

#include <stdio.h>
void some_dummy_func(void)
{
static int i;
printf("some_dummy_func: Counter = %d\n", i++);
i++;
}