mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
12 lines
209 B
C
12 lines
209 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define CHECK(a) { \
|
|
if (!(a)) \
|
|
{ \
|
|
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
|
|
fflush(stdout); \
|
|
abort(); \
|
|
} \
|
|
}
|