summaryrefslogtreecommitdiffstats
path: root/hdlcutil
diff options
context:
space:
mode:
authorCraig Small <csmall@enc.com.au>2001-08-27 22:25:27 +0000
committerCraig Small <csmall@enc.com.au>2001-08-27 22:25:27 +0000
commitf32ee38be8a8caec7bdb59d9de5ba29c4ef94b8a (patch)
tree76b79dfa7557c7c311902b77e60ede0ed3ceff6e /hdlcutil
parent6083a4e8b1980014cb84d1352da844a5aa6bd4f9 (diff)
remove inline statements in hdrvcomm
Diffstat (limited to 'hdlcutil')
-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;