blob: dee8946770b1bbd0e9ae41cc1073a8fcb49d6b22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <sysdep-cancel.h>
#ifndef __NR_mq_timedsend
#error Missing definition of NR_timedsend needed for cancellation.
#endif
PSEUDO (__mq_timedsend, mq_timedsend, 5)
ret
PSEUDO_END(__mq_timedsend)
libc_hidden_def (__mq_timedsend)
weak_alias (__mq_timedsend, mq_timedsend)
libc_hidden_weak (mq_timedsend)
|