• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdlib.h>
2 
3 // A test for a single allocation.  There are two .post.exp* files, for each
4 // of VG_MIN_MALLOC_SZB==8 and VG_MIN_MALLOC_SZB==16.
5 
main(void)6 int main(void)
7 {
8    malloc(1);
9    return 0;
10 }
11