//my_pxsem_fifo/sem_unlink.c
#include	"unpipc.h"
#include	"semaphore.h"

int
mysem_unlink(const char *pathname)
{
	return(unlink(pathname));
}
