1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 00:30:37 -08:00
emacs/mps/qa/conerr/0.c
Richard Tucker e9a5c0fa33 Update headers
Copied from Perforce
 Change: 18186
 ServerID: perforce.ravenbrook.com
1997-05-16 15:43:27 +01:00

25 lines
406 B
C

/* TEST_HEADER
summary = create a space and then destroy it, twice!
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
static void test(void)
{
mps_space_t space;
cdie(mps_space_create(&space), "Create space");
mps_space_destroy(space);
comment("Destroy space once.");
mps_space_destroy(space);
comment("Destroy space twice!");
}
int main(void)
{
easy_tramp(test);
return 0;
}