mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 17:02:40 +00:00
trying to fix mac builds
This commit is contained in:
parent
42f0218367
commit
3a2675c906
@ -20,10 +20,10 @@ int PS4_SYSV_ABI posix_connect(int sockfd, const struct OrbisNetSockaddr* addr,
|
||||
return 0;
|
||||
}
|
||||
u32 PS4_SYSV_ABI posix_htonl(u32 hostlong) {
|
||||
return ::htonl(hostlong);
|
||||
return htonl(hostlong);
|
||||
}
|
||||
u16 PS4_SYSV_ABI posix_htons(u16 hostshort) {
|
||||
return ::htons(hostshort);
|
||||
return htons(hostshort);
|
||||
}
|
||||
int PS4_SYSV_ABI posix_bind(int sockfd, const struct OrbisNetSockaddr* addr, socklen_t addrlen) {
|
||||
auto* netcall = Common::Singleton<NetPosixInternal>::Instance();
|
||||
|
Loading…
Reference in New Issue
Block a user