#ifndef OUR_DICK_CONFIG_HPP #define OUR_DICK_CONFIG_HPP //multiple levels just so i can stop alsa errors without stopping everything else #define OUR_DICK_DEBUG 1 #ifdef OUR_DICK_DEBUG #include #define debug_print(...) fprintf(stderr, __VA_ARGS__) #else #define debug_print(...) #endif #endif