1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-16 08:10:43 -08:00
emacs/mps/qa/function/1.c
Richard Tucker cda39d7153 New unit
I said so

Copied from Perforce
 Change: 17340
 ServerID: perforce.ravenbrook.com
1997-03-21 13:00:01 +00:00

21 lines
284 B
C

/* test create a space and then destroy it
language c
link testlib.o
*/
#include "testlib.h"
static void test(void)
{
mps_space_t space;
cdie(mps_space_create(&space), "create space");
mps_space_destroy(space);
}
int main(void)
{
easy_tramp(test);
pass();
return 0;
}