2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-27 04:11:08 +01:00

engine: psvita: use a macro for ioctlsocket like on all other platforms

This commit is contained in:
fgsfds 2023-02-27 18:03:51 +01:00 committed by Alibek Omarov
parent 3e1833722f
commit 66f625f840

View File

@ -41,8 +41,9 @@ GNU General Public License for more details.
#define FIONBIO SO_NONBLOCK
#endif
// this is only used to set non-blocking on sockets
static inline int ioctlsocket( int fd, int req, unsigned int *arg )
/* ioctlsocket() is only used to set non-blocking on sockets */
static inline int ioctl_psvita( int fd, int req, unsigned int *arg )
{
if ( req == FIONBIO )
{
@ -51,4 +52,6 @@ static inline int ioctlsocket( int fd, int req, unsigned int *arg )
return -ENOSYS;
}
#define ioctlsocket ioctl_psvita
#endif // NET_PSVITA_H