mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-10 02:59:25 +01:00
14 lines
236 B
C
14 lines
236 B
C
|
#include "wut_socket.h"
|
||
|
|
||
|
int
|
||
|
__wut_socket_open(struct _reent *r,
|
||
|
void *fileStruct,
|
||
|
const char *path,
|
||
|
int flags,
|
||
|
int mode)
|
||
|
{
|
||
|
r->_errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|
||
|
|