]> git.proxmox.com Git - rustc.git/blame - src/jemalloc/test/unit/a0.c
New upstream version 1.22.1+dfsg1
[rustc.git] / src / jemalloc / test / unit / a0.c
CommitLineData
3b2f2976
XL
1#include "test/jemalloc_test.h"
2
3TEST_BEGIN(test_a0)
4{
5 void *p;
6
7 p = a0malloc(1);
8 assert_ptr_not_null(p, "Unexpected a0malloc() error");
9 a0dalloc(p);
10}
11TEST_END
12
13int
14main(void)
15{
16
17 return (test_no_malloc_init(
18 test_a0));
19}