/** * @file common.h * Common miscellaneous functions */ #ifndef COMMON_H #define COMMON_H /** * End the current task with a message * @param msg Message to output before bailing */ void bail_out(const char* msg); #endif