tests/C_C++/free_null.c
2024-07-22 19:37:02 +02:00

6 lines
65 B
C

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