OVMS3-idf/examples/system/gcov/components/sample/some_funcs.c
2019-11-12 18:42:02 +03:00

11 lines
132 B
C

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