mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-09 07:19:21 +01:00
12 lines
213 B
C
12 lines
213 B
C
#include "wut_socket.h"
|
|
|
|
int
|
|
__wut_socket_close(struct _reent *r,
|
|
void *fd)
|
|
{
|
|
int sockfd = *(int *)fd;
|
|
int rc = RPLWRAP(socketclose)(sockfd);
|
|
return __wut_get_nsysnet_result(r, rc);
|
|
}
|
|
|