From 238cdd67205ca8b0c94377c50318b7219198be1e Mon Sep 17 00:00:00 2001 From: aymeric Date: Sat, 12 Jan 2002 11:24:48 +0000 Subject: [PATCH] add missing prototype when defined(DEBUG) --- lib/libc/db/btree/extern.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libc/db/btree/extern.h b/lib/libc/db/btree/extern.h index eddad5c8f42a..000188b68309 100644 --- a/lib/libc/db/btree/extern.h +++ b/lib/libc/db/btree/extern.h @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.7 2000/12/20 20:54:01 christos Exp $ */ +/* $NetBSD: extern.h,v 1.8 2002/01/12 11:24:48 aymeric Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -65,6 +65,7 @@ int __ovfl_get __P((BTREE *, void *, size_t *, void **, size_t *)); int __ovfl_put __P((BTREE *, const DBT *, pgno_t *)); #ifdef DEBUG +void __bt_dmpage __P((PAGE *)); void __bt_dnpage __P((DB *, pgno_t)); void __bt_dpage __P((PAGE *)); void __bt_dump __P((DB *));