1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 23:10:26 -08:00
emacs/mps/qa/conerr/2.c
Richard Tucker 78daa882d8 Add id to header
Copied from Perforce
 Change: 20306
 ServerID: perforce.ravenbrook.com
1998-10-29 12:46:01 +00:00

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;
}