My toolchain (Realview) does not have implementation of unistd.h
, I have a code that I need to use that is using unistd.h
, some function like access
, open
.
So I need to implement this functions by myself.
My question is, is there another alternative or some reference (except the function description, found here) that I can use in order to port/implement these functions?
What is the correct way to do that? It's my first time posting.