except/tests/01_sanity.c
2025-04-04 08:45:31 -05:00

14 lines
212 B
C

#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;
}