#ifndef ERROR_H #define ERROR_H __attribute__ ((__format__(printf, 1, 2))) void error_s(const char* format, ...); __attribute__ ((__format__(printf, 1, 2))) void error(const char* format, ...); __attribute__ ((__format__(printf, 1, 2))) void output(const char* format, ...); #endif