summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_interface.h
diff options
context:
space:
mode:
authormpi <mpi@openbsd.org>2019-11-06 07:30:08 +0000
committermpi <mpi@openbsd.org>2019-11-06 07:30:08 +0000
commit8383b4f2d10d7847749ab102afce1f16559c555c (patch)
tree65c4369ddeb10ec9e057bc0571dac86dc9c79704 /sys/ddb/db_interface.h
parentCleanup code a bit, make sure the tal parse buffer is allways freed. (diff)
downloadwireguard-openbsd-8383b4f2d10d7847749ab102afce1f16559c555c.tar.xz
wireguard-openbsd-8383b4f2d10d7847749ab102afce1f16559c555c.zip
Substitute boolean_t/TRUE/FALSE by int/1/0.
ok dlg@, jasper@, anton@
Diffstat (limited to 'sys/ddb/db_interface.h')
-rw-r--r--sys/ddb/db_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_interface.h b/sys/ddb/db_interface.h
index 11d0409dd77..f4d935d8495 100644
--- a/sys/ddb/db_interface.h
+++ b/sys/ddb/db_interface.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_interface.h,v 1.20 2017/09/29 09:36:04 mpi Exp $ */
+/* $OpenBSD: db_interface.h,v 1.21 2019/11/06 07:30:08 mpi Exp $ */
/* $NetBSD: db_interface.h,v 1.1 1996/02/05 01:57:03 christos Exp $ */
/*
@@ -37,7 +37,7 @@ void db_stack_trace_print(db_expr_t, int, db_expr_t, char *,
int (*)(const char *, ...));
/* arch/<arch>/<arch>/db_disasm.c */
-db_addr_t db_disasm(db_addr_t, boolean_t);
+db_addr_t db_disasm(db_addr_t, int);
/* kern/kern_proc.c */
void db_kill_cmd(db_expr_t, int, db_expr_t, char *);