diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-10-11 18:21:39 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-10-11 18:21:39 +0000 |
commit | 63dbfd018fd331da6e7f0e5507408d9e4543ac06 (patch) | |
tree | 0c26a52e755331363b971943fb2f3a621708364a /sys/ddb/db_ctf.c | |
parent | 3832446e8e775bd51871b138f632274c681ada9d (diff) |
missing prototype for db_ctf_pprint
ok mpi@
Diffstat (limited to 'sys/ddb/db_ctf.c')
-rw-r--r-- | sys/ddb/db_ctf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_ctf.c b/sys/ddb/db_ctf.c index b2c225baf77..d06c6c27b86 100644 --- a/sys/ddb/db_ctf.c +++ b/sys/ddb/db_ctf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_ctf.c,v 1.21 2017/09/12 08:20:04 mpi Exp $ */ +/* $OpenBSD: db_ctf.c,v 1.22 2017/10/11 18:21:38 jasper Exp $ */ /* * Copyright (c) 2016-2017 Martin Pieuchot @@ -58,6 +58,7 @@ static char *db_ctf_decompress(const char *, size_t, off_t); const struct ctf_type *db_ctf_type_by_name(const char *, unsigned int); const struct ctf_type *db_ctf_type_by_symbol(Elf_Sym *); const struct ctf_type *db_ctf_type_by_index(uint16_t); +void db_ctf_pprint(const struct ctf_type *, vaddr_t); void db_ctf_pprint_struct(const struct ctf_type *, vaddr_t); void db_ctf_pprint_ptr(const struct ctf_type *, vaddr_t); |