Newer
Older
Tardis / lang / error.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef ERROR_H
#define ERROR_H

#include "types.h"

// Prints a message to stderr and stops running
__attribute__((noreturn)) void abort_print(const char *msg);

#endif