14 lines
212 B
C
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;
|
|
|
|
}
|