tests/C&C++/free_null.c
2024-03-10 16:02:52 +01:00

6 lines
65 B
C

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