diff options
author | Atsushi Murai <amurai@FreeBSD.org> | 1995-02-26 12:18:08 +0000 |
---|---|---|
committer | Atsushi Murai <amurai@FreeBSD.org> | 1995-02-26 12:18:08 +0000 |
commit | 53c9f6c0c48df668bb8fa282cd0b12cb8690bcce (patch) | |
tree | d05da3a88d3d54962fad8582d501f1b7ad9500b9 /usr.sbin/ppp/mbuf.h | |
parent | 550f8550ec70dde086df88fb9d38b44410d299bc (diff) | |
download | src-53c9f6c0c48df668bb8fa282cd0b12cb8690bcce.tar.gz src-53c9f6c0c48df668bb8fa282cd0b12cb8690bcce.zip |
Notes
Diffstat (limited to 'usr.sbin/ppp/mbuf.h')
-rw-r--r-- | usr.sbin/ppp/mbuf.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/ppp/mbuf.h b/usr.sbin/ppp/mbuf.h index 10cb67e03160..c4121f0fc6dc 100644 --- a/usr.sbin/ppp/mbuf.h +++ b/usr.sbin/ppp/mbuf.h @@ -55,13 +55,13 @@ struct mqueue { #define MB_IPQ 10 #define MB_MAX MB_IPQ -extern int plength(struct mbuf *bp); -extern struct mbuf *mballoc(int cnt, int type); -extern struct mbuf *mbfree(struct mbuf *bp); -extern void pfree(struct mbuf *bp); -extern void mbwrite(struct mbuf *bp, u_char *ptr, int cnt); -extern struct mbuf *mbread(struct mbuf *bp, u_char *ptr, int cnt); -extern void DumpBp(struct mbuf *bp); -extern void Enqueue(struct mqueue *queue, struct mbuf *bp); -extern struct mbuf *Dequeue(struct mqueue *queue); +extern int plength __P((struct mbuf *bp)); +extern struct mbuf *mballoc __P((int cnt, int type)); +extern struct mbuf *mbfree __P((struct mbuf *bp)); +extern void pfree __P((struct mbuf *bp)); +extern void mbwrite __P((struct mbuf *bp, u_char *ptr, int cnt)); +extern struct mbuf *mbread __P((struct mbuf *bp, u_char *ptr, int cnt)); +extern void DumpBp __P((struct mbuf *bp)); +extern void Enqueue __P((struct mqueue *queue, struct mbuf *bp)); +extern struct mbuf *Dequeue __P((struct mqueue *queue)); #endif |