15 lines
179 B
C
15 lines
179 B
C
|
/* $Source$
|
||
|
* $State$
|
||
|
* $Revision$
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <errno.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int open(const char* path, int access, ...)
|
||
|
{
|
||
|
errno = EACCES;
|
||
|
return -1;
|
||
|
}
|