Semicompiled

Bitwise not

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