| OLD | NEW |
| 1 #include <mqueue.h> | 1 #include <mqueue.h> |
| 2 #include "syscall.h" | 2 #include "syscall.h" |
| 3 | 3 |
| 4 ssize_t mq_timedreceive(mqd_t mqd, char *restrict msg, size_t len, unsigned *res
trict prio, const struct timespec *restrict at) | 4 ssize_t mq_timedreceive(mqd_t mqd, |
| 5 { | 5 char* restrict msg, |
| 6 » return syscall_cp(SYS_mq_timedreceive, mqd, msg, len, prio, at); | 6 size_t len, |
| 7 unsigned* restrict prio, |
| 8 const struct timespec* restrict at) { |
| 9 return syscall_cp(SYS_mq_timedreceive, mqd, msg, len, prio, at); |
| 7 } | 10 } |
| OLD | NEW |