mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
syscalls: update a few return types to ssize_t
Reviewed by: kib
This commit is contained in:
parent
717e7fb27a
commit
27f5b514a0
1 changed files with 4 additions and 4 deletions
|
|
@ -235,21 +235,21 @@
|
|||
);
|
||||
}
|
||||
27 AUE_RECVMSG STD|CAPENABLED {
|
||||
int recvmsg(
|
||||
ssize_t recvmsg(
|
||||
int s,
|
||||
_Inout_ struct msghdr *msg,
|
||||
int flags
|
||||
);
|
||||
}
|
||||
28 AUE_SENDMSG STD|CAPENABLED {
|
||||
int sendmsg(
|
||||
ssize_t sendmsg(
|
||||
int s,
|
||||
_In_ const struct msghdr *msg,
|
||||
int flags
|
||||
);
|
||||
}
|
||||
29 AUE_RECVFROM STD|CAPENABLED {
|
||||
int recvfrom(
|
||||
ssize_t recvfrom(
|
||||
int s,
|
||||
_Out_writes_bytes_(len) void *buf,
|
||||
size_t len,
|
||||
|
|
@ -841,7 +841,7 @@
|
|||
);
|
||||
}
|
||||
133 AUE_SENDTO STD|CAPENABLED {
|
||||
int sendto(
|
||||
ssize_t sendto(
|
||||
int s,
|
||||
_In_reads_bytes_(len) const void *buf,
|
||||
size_t len,
|
||||
|
|
|
|||
Loading…
Reference in a new issue