2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
9 int main (int argc
, char ** argv
)
16 printf ("str=%p (malloc)\n", str
);
20 str
[-1] = 0; /* IWR */
23 str
= calloc (1, 3); /* MLK */
25 printf ("str=%p (calloc)\n", str
);
30 str
= realloc (str
, 7);
32 printf ("str=%p (realloc)\n", str
);