9 lines
125 B
C
9 lines
125 B
C
#include <errno.h>
|
|
#include <stdio.h>
|
|
|
|
FILE *fopen(const char *path, const char *mode)
|
|
{
|
|
errno = -ENOENT;
|
|
return NULL;
|
|
}
|