blob: 61b580c80811747a218dd6c43f4a5259b8f88184 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _PSP2_NET_NET_SYSCALLS_H_
#define _PSP2_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 /* _PSP2_NET_NET_SYSCALLS_H_ */
|