glibc/tests/Regression/bz1746933-glibc-Backport-malloc-tcache-enhancements/t.c
2023-04-04 01:55:48 +02:00

13 lines
157 B
C

#include <stdio.h>
#include <stdlib.h>
int main() {
void *m;
printf("Malloc test\n");
if(!malloc(100)) {
perror("malloc");
return 1;
}
return 0;
}