aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-07 16:57:41 +1300
committerAndrew Chambers <[email protected]>2021-10-07 16:57:41 +1300
commit2a302793114003a4440f43f4beb9a3d752171408 (patch)
tree32f327e5fd8952bd3f57fe8d2a5a169c45491708 /util.c
parentf4a9a52d001a54ca1142110b70142a8ef8df53bc (diff)
WIP refactor.
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/util.c b/util.c
index 43c3d8b..9ed1c50 100644
--- a/util.c
+++ b/util.c
@@ -27,9 +27,7 @@ void fatal(const char *fmt, ...) {
exit(1);
}
-void unreachable(void) {
- lfatal("BUG: unexpected internal condition");
-}
+void unreachable(void) { lfatal("BUG: unexpected internal condition"); }
void *xmalloc(size_t n) {
void *p;