summaryrefslogtreecommitdiff
path: root/c/malloc.c
blob: eef62c8debe1e0db95e49da4133302f446af4911 (plain) (blame)
1
2
3
4
5
6
7
#include <stdlib.h>
#include <stdio.h>

int main() {
	void *p = malloc(274877906944);

}