Added header files

This commit is contained in:
TriantaTV 2022-10-11 19:53:52 -05:00
parent e4debd05db
commit 71b700d11e
4 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,6 @@
#ifndef CONSUMER_H
#define CONSUMER_H
void Consumer(void);
#endif

View File

@ -0,0 +1,6 @@
#ifndef PRODUCER_H
#define PRODUCER_H
void Producer(void);
#endif

View File

@ -1,4 +1,6 @@
void consumer(void)
#include "consumer.h"
void Consumer(void)
{
;
}

View File

@ -1,4 +1,6 @@
void producer(void)
#include "producer.h"
void Producer(void)
{
;
}