mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 13:18:15 +00:00
DARWIN branch, along with a few other minor things. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9197
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;
|
|
}
|