diff options
author | dzwdz | 2022-08-26 14:16:16 +0200 |
---|---|---|
committer | dzwdz | 2022-08-26 14:16:16 +0200 |
commit | e6584db26da34572fb13aa236e16e19f71c8e976 (patch) | |
tree | 055c528765e986bc8ed6706cec84289e50b46ed6 /src/user/lib/panic.h | |
parent | ffdf0e8d93f8e98ed9d5a8270feb2a19eb9659e3 (diff) |
user/libc: prepare for OpenED port
Diffstat (limited to 'src/user/lib/panic.h')
-rw-r--r-- | src/user/lib/panic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user/lib/panic.h b/src/user/lib/panic.h new file mode 100644 index 0000000..91aec5f --- /dev/null +++ b/src/user/lib/panic.h @@ -0,0 +1,5 @@ +#pragma once +#include <stdio.h> +#include <stdlib.h> + +#define __libc_panic(...) do { fprintf(stderr, "__libc_panic @ %s:", __func__); fprintf(stderr, __VA_ARGS__); fprintf(stderr, "\n"); abort(); } while (0) |