Semicompiled

Bitwise not

source.c
int produce(void);
void consume(int);
void myEntry(void)
{
consume(~produce());
}