9 lines
232 B
C
9 lines
232 B
C
#pragma once
|
|
#include <safe-diagnostic.h>
|
|
|
|
#define spslr_fatal_loc(loc, fmt, ...) \
|
|
fatal_error((loc), "[spslr_pinpoint] " fmt, ##__VA_ARGS__)
|
|
|
|
#define spslr_fatal(fmt, ...) \
|
|
spslr_fatal_loc(UNKNOWN_LOCATION, fmt, ##__VA_ARGS__)
|