This is a clib library offering variants of abort().
It aims to be compatible with libc conventions.
- Uses attributes for compile-time format string checking
abortswill print a message and abortabortfwill format a message and abortabortvfis the varargs version ofabortf
#include <abortf.h>
extern void aborts(const char *msg);
extern void abortf(const char *fmt, ...);
extern void abortvf(const char *fmt, va_list a);