summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2007-11-28 14:04:26 +0000
committerderaadt <deraadt@openbsd.org>2007-11-28 14:04:26 +0000
commitca610fd01f5049756731989d99b5a287e98091f8 (patch)
treef875ff7cdcc328ae4e3175251579fc04492b9bc7
parentremove the DIRECTOK flag. the caller semantics were too weird, and it's a (diff)
downloadwireguard-openbsd-ca610fd01f5049756731989d99b5a287e98091f8.tar.xz
wireguard-openbsd-ca610fd01f5049756731989d99b5a287e98091f8.zip
move protos to right place
-rw-r--r--sys/sys/mbuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index 53ff71c5fba..ada55c24ede 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mbuf.h,v 1.95 2007/11/27 16:38:50 tedu Exp $ */
+/* $OpenBSD: mbuf.h,v 1.96 2007/11/28 14:04:26 deraadt Exp $ */
/* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */
/*
@@ -386,14 +386,12 @@ do { \
* Compute the amount of space available
* before the current start of data in an mbuf.
*/
-int m_leadingspace(struct mbuf *);
#define M_LEADINGSPACE(m) m_leadingspace(m)
/*
* Compute the amount of space available
* after the end of data in an mbuf.
*/
-int m_trailingspace(struct mbuf *);
#define M_TRAILINGSPACE(m) m_trailingspace(m)
/*
@@ -469,6 +467,8 @@ struct mbuf *m_pullup2(struct mbuf *, int);
struct mbuf *m_split(struct mbuf *, int, int);
struct mbuf *m_inject(struct mbuf *, int, int, int);
struct mbuf *m_getptr(struct mbuf *, int, int *);
+int m_leadingspace(struct mbuf *);
+int m_trailingspace(struct mbuf *);
void m_clget(struct mbuf *, int);
void m_adj(struct mbuf *, int);
void m_copyback(struct mbuf *, int, int, const void *);