// // common/debug.c // // Verbose debugging functions (read: "fancy print wrappers"). // // This file is subject to the terms and conditions defined in // 'LICENSE', which is part of this source code package. // #include "common/debug.h" #include #include #include #ifndef NDEBUG // Writes a formatted string to standard output. int debug(const char *fmt, ...) { va_list ap; int ret; va_start(ap, fmt); ret = vfprintf(stdout, fmt, ap); va_end(ap); return ret; } #endif