#ifndef PRINTF_H
#define PRINTF_H
#ifndef NDEBUG
#include "dbmeta.h" /* Listing 9 */
DB_DECL(int,printf,
(const char format[], ...));
#ifdef printf
#undef printf
#endif
#define printf DB_CALL(printf)
#endif /* NDEBUG */
#endif /* PRINTF_H */
/* End of File */