wut/libraries/wutsocket/wut_socket_open.c

14 lines
236 B
C
Raw Normal View History

2021-03-07 13:09:12 +01:00
#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;
}