5 test the memory calls. These test sbrk(), which is part of glue.c
6 for most architectures.
18 /* see if we can get some memory */
19 buf
= (char *)malloc(BUFSIZE
);
26 /* see if we can realloc it */
28 result
= (char *)realloc (buf
, BUFSIZE
+100);
29 if ((buf
!= 0x0) && (result
!= 0x0)) {
35 /* see if we can free it up. FIXME: how to test free ?*/