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

22 lines
284 B
C

/* TEST_HEADER
summary = destroy a space without creating it
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
static void test(void)
{
mps_space_t space;
mps_space_destroy(space);
comment("Destroy space.");
}
int main(void)
{
easy_tramp(test);
return 0;
}