1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-15 15:50:57 -08:00
emacs/mps/qa/conerr/3.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
338 B
C

/*
TEST_HEADER
id = $HopeName$
summary = destroy a space which isn't a space, with a pointer in
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
static void test(void)
{
mps_space_t space;
space = &space;
mps_space_destroy(space);
comment("Destroy space.");
}
int main(void)
{
easy_tramp(test);
return 0;
}