/*
* swapdump.c
*
* Overrides swapout() and dump_state() kfuns
*
* (C) Frank Schmidt, Jesus@NorseMUD
*
*/
/* restrict access */
static void dump_state() {
if (DRIVER_PRIV())
::dump_state();
else
illegal();
}
/* restrict access */
static void swapout() {
if (DRIVER_PRIV())
::swapout();
else
illegal();
}