diff options
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -27,12 +27,12 @@ int get_int_value_from_file(const char* filename); void chomp(char *string); int get_int(const char* string); -// <ew> Stringification of line number +/* <ew> Stringification of line number */ #define STRING2(x) #x #define STRING(x) STRING2(x) #define STR_LINE STRING(__LINE__) -// </ew> +/* </ew> */ #define info(...) printf("INFO: "__FILE__":"STR_LINE" --- "__VA_ARGS__) #define FILE_PATH_SIZE 2048 -#endif +#endif /* ifndef COMMON_H */ |