diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2001-05-19 20:55:33 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2001-05-19 20:55:33 +0000 |
commit | 019e900eb3a9936e922d4af343bf62ee2ffddfde (patch) | |
tree | 6c09b38bb7205a79089d2bb05a50dea63adbcc86 | |
parent | 0e15b57c12d3cfe463206641772c20558e91359f (diff) |
make it compile for DEBUG
-rw-r--r-- | sys/sys/mbuf.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 1a373fecd25..6759f59fef8 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.25 2001/05/17 18:41:44 provos Exp $ */ +/* $OpenBSD: mbuf.h,v 1.26 2001/05/19 20:55:32 provos Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -90,6 +90,12 @@ struct m_ext { int ext_type; struct mbuf *ext_nextref; struct mbuf *ext_prevref; +#ifdef DEBUG + const char *ext_ofile; + const char *ext_nfile; + int ext_oline; + int ext_nline; +#endif }; struct mbuf { |