summaryrefslogtreecommitdiffstats
path: root/hdlcutil/hdrvcomm.c
diff options
context:
space:
mode:
Diffstat (limited to 'hdlcutil/hdrvcomm.c')
-rw-r--r--hdlcutil/hdrvcomm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hdlcutil/hdrvcomm.c b/hdlcutil/hdrvcomm.c
index 2c7560e..263ebd8 100644
--- a/hdlcutil/hdrvcomm.c
+++ b/hdlcutil/hdrvcomm.c
@@ -262,7 +262,7 @@ void hdrvc_init(void)
/* ---------------------------------------------------------------------- */
-extern __inline__ void hdrvc_sendmsg(struct usersmmsg *msg, int len)
+void hdrvc_sendmsg(struct usersmmsg *msg, int len)
{
if (msgsnd(msqid, (struct msgbuf *)msg, len+sizeof(msg->hdr)-sizeof(long), 0) < 0) {
perror("msgsnd");
@@ -270,7 +270,7 @@ extern __inline__ void hdrvc_sendmsg(struct usersmmsg *msg, int len)
}
}
-extern __inline__ int hdrvc_recvmsg(struct usersmmsg *msg, int maxlen, long type)
+int hdrvc_recvmsg(struct usersmmsg *msg, int maxlen, long type)
{
int len;