#ifndef CLOSURE_H #defined CLOSURE_H typedef struct _closure { void *(func *)(); void *obj; int port; } closure; #endif