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");
|
2025-04-04 22:05:09 +00:00
|
|
|
ASSERTED(NULL);
|
2025-04-04 13:45:31 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
|
|
|
}
|