mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 05:41:37 +00:00
16 lines
261 B
C
16 lines
261 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
for (int i = 0 ; i < 100000 ; i++) {
|
|
malloc(16);
|
|
malloc(32);
|
|
malloc(64);
|
|
malloc(128);
|
|
malloc(256);
|
|
malloc(512);
|
|
}
|
|
return 0;
|
|
}
|