wut/libraries/wutsocket/wut_socket_open.c
2021-03-07 13:09:12 +01:00

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;
}