glibc/tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c

13 lines
157 B
C
Raw Normal View History

2023-04-03 23:55:48 +00:00
#include <stdio.h>
#include <stdlib.h>
int main() {
void *m;
printf("Malloc test\n");
if(!malloc(100)) {
perror("malloc");
return 1;
}
return 0;
}