tests/free_null.c
2024-03-10 15:57:35 +01:00

6 lines
65 B
C

#include <stdlib.h>
signed main(){
//free(NULL);
free(1);
}