mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 00:46:12 +00:00
11 lines
199 B
C
11 lines
199 B
C
#include <stdlib.h>
|
|
|
|
// A test for a single allocation. There are two .post.exp* files, for each
|
|
// of VG_MIN_MALLOC_SZB==8 and VG_MIN_MALLOC_SZB==16.
|
|
|
|
int main(void)
|
|
{
|
|
malloc(1);
|
|
return 0;
|
|
}
|