|
Lines 84-93
Link Here
|
| 84 |
27 MSTD BSD { int recvmsg(int s, struct msghdr *msg, int flags); } |
84 |
27 MSTD BSD { int recvmsg(int s, struct msghdr *msg, int flags); } |
| 85 |
28 MSTD BSD { int sendmsg(int s, caddr_t msg, int flags); } |
85 |
28 MSTD BSD { int sendmsg(int s, caddr_t msg, int flags); } |
| 86 |
29 MSTD BSD { int recvfrom(int s, caddr_t buf, size_t len, \ |
86 |
29 MSTD BSD { int recvfrom(int s, caddr_t buf, size_t len, \ |
| 87 |
int flags, caddr_t from, int *fromlenaddr); } |
87 |
int flags, struct sockaddr * __restrict from, \ |
| 88 |
30 MSTD BSD { int accept(int s, caddr_t name, int *anamelen); } |
88 |
__socklen_t * __restrict fromlenaddr); } |
| 89 |
31 MSTD BSD { int getpeername(int fdes, caddr_t asa, int *alen); } |
89 |
30 MSTD BSD { int accept(int s, struct sockaddr * __restrict name, __socklen_t *__restrict anamelen); } |
| 90 |
32 MSTD BSD { int getsockname(int fdes, caddr_t asa, int *alen); } |
90 |
31 MSTD BSD { int getpeername(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); } |
|
|
91 |
32 MSTD BSD { int getsockname(int fdes, struct sockaddr * __restrict asa, __socklen_t * __restrict alen); } |
| 91 |
33 STD POSIX { int access(char *path, int flags); } |
92 |
33 STD POSIX { int access(char *path, int flags); } |
| 92 |
34 STD BSD { int chflags(char *path, int flags); } |
93 |
34 STD BSD { int chflags(char *path, int flags); } |
| 93 |
35 STD BSD { int fchflags(int fd, int flags); } |
94 |
35 STD BSD { int fchflags(int fd, int flags); } |
|
Lines 197-203
Link Here
|
| 197 |
struct timezone *tzp); } |
198 |
struct timezone *tzp); } |
| 198 |
117 MSTD BSD { int getrusage(int who, struct rusage *rusage); } |
199 |
117 MSTD BSD { int getrusage(int who, struct rusage *rusage); } |
| 199 |
118 MSTD BSD { int getsockopt(int s, int level, int name, \ |
200 |
118 MSTD BSD { int getsockopt(int s, int level, int name, \ |
| 200 |
caddr_t val, int *avalsize); } |
201 |
void * __restrict val, \ |
|
|
202 |
__socklen_t * __restrict avalsize); } |
| 201 |
119 UNIMPL NOHIDE resuba (BSD/OS 2.x) |
203 |
119 UNIMPL NOHIDE resuba (BSD/OS 2.x) |
| 202 |
120 MSTD BSD { int readv(int fd, struct iovec *iovp, u_int iovcnt); } |
204 |
120 MSTD BSD { int readv(int fd, struct iovec *iovp, u_int iovcnt); } |
| 203 |
121 MSTD BSD { int writev(int fd, struct iovec *iovp, \ |
205 |
121 MSTD BSD { int writev(int fd, struct iovec *iovp, \ |