From f32ee38be8a8caec7bdb59d9de5ba29c4ef94b8a Mon Sep 17 00:00:00 2001 From: Craig Small Date: Mon, 27 Aug 2001 22:25:27 +0000 Subject: remove inline statements in hdrvcomm --- hdlcutil/hdrvcomm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hdlcutil') 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; -- cgit v1.2.3