ft_malloc/main.c

7 lines
64 B
C

#include <stdlib.h>
int main(void) {
malloc(42);
return 0;
}