diff options
author | Reiko Asakura | 2021-03-10 22:00:50 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-10 22:00:50 -0500 |
commit | b7b08fb886780eb3675dd26bc49712d339d94d5f (patch) | |
tree | 215f76622c43aa4a82b556bb1568b9d9c18f3c4e /include/user/net/net_syscalls.h | |
parent | Add NIDs in SceCodecEngineUser (diff) | |
download | vds-libraries-b7b08fb886780eb3675dd26bc49712d339d94d5f.tar.gz |
Remove forwarded syscalls
The criteria for removal are
1. The syscall forwarder does not modify arguments or pass additional
arguments.
2. The syscall is not used outside of the syscall forwarder.
For the removed headers, appmgr.h is wrong, iofilemgr_syscall.h is
correct, and net_syscalls.h is unknown.
Diffstat (limited to '')
-rw-r--r-- | include/user/net/net_syscalls.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/user/net/net_syscalls.h b/include/user/net/net_syscalls.h deleted file mode 100644 index a1441cb..0000000 --- a/include/user/net/net_syscalls.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - Vita Development Suite Libraries -*/ - -#ifndef _VDSUITE_USER_NET_NET_SYSCALLS_H -#define _VDSUITE_USER_NET_NET_SYSCALLS_H - -#include <net.h> - -#ifdef __cplusplus -extern "C" { -#endif - -int sceNetSyscallConnect(int s, const SceNetSockaddr *name, unsigned int namelen); - -#ifdef __cplusplus -} -#endif - -#endif /* _VDSUITE_USER_NET_NET_SYSCALLS_H */ |