mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
15 lines
258 B
C
15 lines
258 B
C
#include <stdio.h>
|
|
#include <stdlib.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;
|
|
}
|