7 lines
200 B
C
7 lines
200 B
C
|
#ifndef CONTROLLER_MACROS_H
|
||
|
#define CONTROLLER_MACROS_H
|
||
|
|
||
|
#define LOG_ERROR(msg) printf("ERROR: \"%s\" in function %s in file %s:%d\n", msg, __func__, __FILE__, __LINE__)
|
||
|
|
||
|
#endif //CONTROLLER_MACROS_H
|