Commit 111eb75e by Richard Kenner

Initial revision

From-SVN: r10375
parent 2f81c52e
int open (const char *filename, int oflag, int pmode)
{
return _open (filename, oflag, pmode);
}
int read (int handle, void *buffer, unsigned int count)
{
return _read (handle, buffer, count);
}
int close (int handle)
{
return _close (handle);
}
int access (const char *path, int mode)
{
return _access (path, mode);
}
char *mktemp (char *template)
{
return (char *) _mktemp (template);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment