Added header files

This commit is contained in:
2022-10-11 19:53:52 -05:00
parent e4debd05db
commit 71b700d11e
4 changed files with 18 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
#ifndef CONSUMER_H
#define CONSUMER_H
void Consumer(void);
#endif
+6
View File
@@ -0,0 +1,6 @@
#ifndef PRODUCER_H
#define PRODUCER_H
void Producer(void);
#endif
+3 -1
View File
@@ -1,4 +1,6 @@
void consumer(void)
#include "consumer.h"
void Consumer(void)
{
;
}
+3 -1
View File
@@ -1,4 +1,6 @@
void producer(void)
#include "producer.h"
void Producer(void)
{
;
}