OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / debug_helper.c
1
2 #include "debug_helper.h"
3
4 void svc_perror(const char *file, int_t line, const char *expr, ER ercd)
5 {
6     if (ercd < 0) {
7         t_perror(LOG_ERROR, file, line, expr, ercd);
8     }
9 }
10