diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 11:19:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-23 11:19:00 +0000 |
commit | f1775381f91f1250b20f1949dfd0364ddb0ee9fc (patch) | |
tree | 1326bd7f4dfd8c57f89c4d6b2f13d4f22f578abf /librt/mq_send.c | |
parent | d35b0bc119816825a657f7c9c2a1f062e7048c39 (diff) |
- fix inline keyword
Diffstat (limited to 'librt/mq_send.c')
-rw-r--r-- | librt/mq_send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librt/mq_send.c b/librt/mq_send.c index fbfc99e46..446ecc89a 100644 --- a/librt/mq_send.c +++ b/librt/mq_send.c @@ -11,7 +11,7 @@ librt_hidden_proto(mq_timedsend) #ifdef __NR_mq_timedsend #define __NR___syscall_mq_timedsend __NR_mq_timedsend -static inline _syscall5(int, __syscall_mq_timedsend, int, mqdes, +static __inline__ _syscall5(int, __syscall_mq_timedsend, int, mqdes, const char *, msg_ptr, size_t, msg_len, unsigned int, msg_prio, const void *, abs_timeout); #endif |