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 --- ChangeLog | 3 ++- hdlcutil/hdrvcomm.c | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2cff59f..bf240cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,8 @@ ax25-tools (0.0.9) * Fix for mkiss pid problem + * Removed inline statesment in hdrvcomm.c - -- Craig Small + -- Craig Small NO RELEASE YET ax25-tools (0.0.8) * kissattach now tells you where it thinks the config file is 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