#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include "utils.h"
#include "mysem.h"
Semaphore *make_semaphore(int value)
{
Semaphore *semaphore = check_malloc(sizeof(Semaphore));
return semaphore;
}
void semaphore_wait(Semaphore *semaphore)
{
}
void semaphore_signal(Semaphore *semaphore)
{
}