/* $Id: task.h,v 1.1 2003/02/09 22:59:31 wafer Exp $ */ /* This file defines the task types */ #ifndef _MOD_TASK_INC_ #define _MOD_TASK_INC_ typedef struct { int (*task_func) (int, int); int foo; } task_t; #endif /* _MOD_TASK_INC_ */