#ifndef TASK_H_ #define TASK_H_ typedef struct Task Task; typedef struct Task{ void *target; } Task; Task * TaskInit(); #endif