15 lines
513 B
C
15 lines
513 B
C
|
#ifndef INCLUDE_WAYLANDCLIENT_LOG_H_
|
||
|
#define INCLUDE_WAYLANDCLIENT_LOG_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#define meow(fmt, ...) \
|
||
|
fprintf(stderr, "[%s:%d] " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__)
|
||
|
#define crash(fmt, ...) \
|
||
|
fprintf(stderr, "[%s:%d] " fmt "\n", __FILE__, __LINE__, ##__VA_ARGS__); \
|
||
|
*(int *)0 = 0;
|
||
|
|
||
|
void print_backtrace();
|
||
|
|
||
|
#endif // INCLUDE_WAYLANDCLIENT_LOG_H_
|