watcher: TDD

:/
This commit is contained in:
Alastair Poole 2021-05-17 16:02:03 +01:00
parent 67561639fd
commit de06a87b4d
1 changed files with 7 additions and 2 deletions

View File

@ -8,8 +8,8 @@ static Eina_List *sensors = NULL;
static Eina_List *network_interfaces = NULL;
static Eina_List *cores = NULL;
int
main(int argc, char **argv)
static int
test(void)
{
Eina_List *l;
Cpu_Core *core;
@ -82,3 +82,8 @@ main(int argc, char **argv)
return 0;
}
int main(int argc, char **argv)
{
return test();
}