#include #include "task.h" Task * TaskInit(){ Task *new = malloc(sizeof(Task)); new->target = 0; return new; }