FreeBSD regtest: feature test for aio_readv
[valgrind.git] / dhat / tests / single.c
blobbc608273dccf8ae25dfe0690b5940a37e514a4d4
1 // A single allocation (so the root node is the only node in the tree).
3 #include <stdlib.h>
5 int main() {
6 int* a = (int*)malloc(16);
7 a[0] = 0;
8 a[0] = 1;
9 a[0] = 2;
10 return 0;