mirror of
https://github.com/Hizenberg469/MultiThreading_Part_A.git
synced 2026-04-20 10:32:23 +03:00
14 lines
221 B
C
14 lines
221 B
C
#ifndef __MASTER_SLAVE1_H
|
|
#define __MASTER_SLAVE1_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <pthread.h>
|
|
|
|
|
|
void*
|
|
write_into_file(void* arg);
|
|
|
|
#endif /* __MASTER_SLAVE1_H*/ |