Semicompiled

Bitwise not

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