Files
helmetc/libxtools/massert.c
Олег Бородин fc578f6e48 indent
2025-10-16 00:08:17 +02:00

15 lines
264 B
C

/*
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
*/
#include <stdio.h>
#include <stdlib.h>
#include <massert.h>
void x__assert(char* path, int line, const char* func) {
printf("%s:%d: assert error in %s\n", path, line, func);
exit(1);
}