diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-27 18:21:33 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-27 18:21:33 +0000 |
commit | 28c8634afdc1fa236679b49ab0d5a019379c6db1 (patch) | |
tree | fda9d6e124a32799b07247f8d38d0cc8f963cd4e /libc/misc/sysvipc/msgq.c | |
parent | eb38b2d34c32ed3089e2bf8935219a57f84ce7b3 (diff) | |
download | uClibc-alpine-28c8634afdc1fa236679b49ab0d5a019379c6db1.tar.bz2 uClibc-alpine-28c8634afdc1fa236679b49ab0d5a019379c6db1.tar.xz |
Synch with trunk @ 24165
Step 17: libc_hidden_proto removal (almost all).
and other minor changes (inline keyword, extra character)
Diffstat (limited to 'libc/misc/sysvipc/msgq.c')
-rw-r--r-- | libc/misc/sysvipc/msgq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/sysvipc/msgq.c b/libc/misc/sysvipc/msgq.c index 34b398bb6..8271ffbef 100644 --- a/libc/misc/sysvipc/msgq.c +++ b/libc/misc/sysvipc/msgq.c @@ -12,7 +12,7 @@ #ifdef __NR_msgctl #define __NR___libc_msgctl __NR_msgctl -static __inline__ _syscall3(int, __libc_msgctl, int, msqid, int, cmd, struct msqid_ds *, buf); +static __inline__ _syscall3(int, __libc_msgctl, int, msqid, int, cmd, struct msqid_ds *, buf) #endif /* Message queue control operation. */ int msgctl(int msqid, int cmd, struct msqid_ds *buf) @@ -50,7 +50,7 @@ struct new_msg_buf{ #ifdef __NR_msgrcv #define __NR___syscall_msgrcv __NR_msgrcv static inline _syscall5(int, __syscall_msgrcv, int, msqid, void *, msgp, - size_t, msgsz, long int, msgtyp, int, msgflg); + size_t, msgsz, long int, msgtyp, int, msgflg) #endif static inline int do_msgrcv (int msqid, void *msgp, size_t msgsz, long int msgtyp, int msgflg) @@ -85,7 +85,7 @@ int msgrcv (int msqid, void *msgp, size_t msgsz, #ifdef __NR_msgsnd #define __NR___syscall_msgsnd __NR_msgsnd static inline _syscall4(int, __syscall_msgsnd, int, msqid, const void *, msgp, - size_t, msgsz, int, msgflg); + size_t, msgsz, int, msgflg) #endif /* Send message to message queue. */ static inline int do_msgsnd (int msqid, const void *msgp, size_t msgsz, |