diff options
author | Marvin Borner | 2023-05-30 13:10:00 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-30 13:10:00 +0200 |
commit | 75c40090e9302e11fc32863270360ef597a93933 (patch) | |
tree | d2ec6a5539c1f77852a5ae7bc452bf4eef35b5b1 /inc/log.h |
Initial bootstrapping
Diffstat (limited to 'inc/log.h')
-rw-r--r-- | inc/log.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/log.h b/inc/log.h new file mode 100644 index 0000000..335320f --- /dev/null +++ b/inc/log.h @@ -0,0 +1,11 @@ +// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef SHARING_LOG_H +#define SHARING_LOG_H + +void debug(const char *format, ...); +void debug_enable(int enable); +void fatal(const char *format, ...) __attribute__((noreturn)); + +#endif |