blob: 4698f9ce4794b75c9787ed90388bf48046a1ad66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef LOG_H
#define LOG_H
#include <context.h>
__attribute__((noreturn)) void errln(struct ctx *ctx, const char *fmt, ...);
__attribute__((noreturn)) void err(const char *fmt, ...);
#endif
|