blob: 5e5b51537702cd9e863acc85dbfbedb58e623de6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <BH/IO.h>
BH_IO *BH_FileNew(const char *path,
int mode,
int *result)
{
BH_UNUSED(path);
BH_UNUSED(mode);
if (result)
*result = BH_NOIMPL;
return NULL;
}
|