Added header files
This commit is contained in:
parent
e4debd05db
commit
71b700d11e
@ -0,0 +1,6 @@
|
||||
#ifndef CONSUMER_H
|
||||
#define CONSUMER_H
|
||||
|
||||
void Consumer(void);
|
||||
|
||||
#endif
|
@ -0,0 +1,6 @@
|
||||
#ifndef PRODUCER_H
|
||||
#define PRODUCER_H
|
||||
|
||||
void Producer(void);
|
||||
|
||||
#endif
|
@ -1,4 +1,6 @@
|
||||
void consumer(void)
|
||||
#include "consumer.h"
|
||||
|
||||
void Consumer(void)
|
||||
{
|
||||
;
|
||||
}
|
@ -1,4 +1,6 @@
|
||||
void producer(void)
|
||||
#include "producer.h"
|
||||
|
||||
void Producer(void)
|
||||
{
|
||||
;
|
||||
}
|
Loading…
Reference in New Issue
Block a user