dtinfo: Change to ANSI function definitions
This commit is contained in:
@@ -81,10 +81,7 @@ static void mswap __P((PAGE *));
|
||||
* h: page to convert
|
||||
*/
|
||||
void
|
||||
__bt_pgin(t, pg, pp)
|
||||
void *t;
|
||||
pgno_t pg;
|
||||
void *pp;
|
||||
__bt_pgin(void *t, pgno_t pg, void *pp)
|
||||
{
|
||||
PAGE *h;
|
||||
int i, top;
|
||||
@@ -149,10 +146,7 @@ __bt_pgin(t, pg, pp)
|
||||
}
|
||||
|
||||
void
|
||||
__bt_pgout(t, pg, pp)
|
||||
void *t;
|
||||
pgno_t pg;
|
||||
void *pp;
|
||||
__bt_pgout(void *t, pgno_t pg, void *pp)
|
||||
{
|
||||
PAGE *h;
|
||||
int i, top;
|
||||
@@ -223,8 +217,7 @@ __bt_pgout(t, pg, pp)
|
||||
* p: page to convert
|
||||
*/
|
||||
static void
|
||||
mswap(pg)
|
||||
PAGE *pg;
|
||||
mswap(PAGE *pg)
|
||||
{
|
||||
char *p;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user