Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
b91372b65e02b4d8e59c307ac34dc09522404641
/
.
/
build_tests
/
tcmalloc.cc
blob: c1d44299b8dc3f08c4f7205c52992cf65e8b7fc4 [
file
] [
log
] [
blame
]
Brian Silverman
516ceb2
2015-11-27 01:29:05 -0500
[
diff
] [
blame
]
1
#include
<stdlib.h>
2
Brian Silverman
92c3f1e
2015-12-08 20:21:31 -0500
[
diff
] [
blame
]
3
int
main
()
{
4
void
*
big_chunk
=
malloc
(
500000
);
5
free
(
big_chunk
);
6
}