#include <stdio.h>

struct mt_blk {
    int closed;
    thread wQueue;
};

typedef struct mt_blk mutex;

#define M_INI {0,0}
void close(mutex *m);

int main(void)
{
    printf("%d", mutex.closed);
    return 0;
}