#ifndef PRODUCER_H
#define PRODUCER_H
void Producer(void);
long int produce_item(void);
void insert_item(long int item);
#endif