Files
helmetc/libxtools/massert.c
Олег Бородин 9abd8a5e19 import
2025-10-01 11:21:05 +02:00

15 lines
258 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);
}