mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
25 lines
323 B
C
25 lines
323 B
C
/*
|
|
TEST_HEADER
|
|
id = $HopeName$
|
|
summary = destroy a space which isn't a space
|
|
language = c
|
|
link = testlib.o
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "testlib.h"
|
|
|
|
static void test(void)
|
|
{
|
|
mps_space_t space;
|
|
|
|
space = malloc(64);
|
|
mps_space_destroy(space);
|
|
comment("Destroy space.");
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
easy_tramp(test);
|
|
return 0;
|
|
}
|