42-archive/malloc/tests/test0.c
Jack Halford 3822058609 tests
2017-02-21 18:22:11 +01:00

15 lines
141 B
C

#include "../includes/malloc.h"
int main(void)
{
int i;
char *addr;
i = 0;
valloc(42);
while (i < 1024)
{
i++;
}
return (0);
}