summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--hdlcutil/hdrvcomm.c4
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 <csmall@small.dropbear.id.au>
+ -- Craig Small <csmall@small.dropbear.id.au> 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;