except/tests/01_sanity.c

14 lines
212 B
C
Raw Normal View History

2025-04-04 13:45:31 +00:00
#define DEBUG
#include "../include/except.h"
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("\n\n");
printf("Assertion sanity test.\n");
ASSERT(NULL);
return EXIT_SUCCESS;
}