1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-14 07:20:35 -08:00
emacs/mps/qa/argerr/0.c
Richard Tucker 2276849832 Add id to header
Copied from Perforce
 Change: 20305
 ServerID: perforce.ravenbrook.com
1998-10-29 12:34:59 +00:00

23 lines
295 B
C

/*
TEST_HEADER
id = $HopeName$
summary = create a space with a NULL space_t
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
#include "arg.h"
static void test(void)
{
adie(mps_space_create(NULL),
"Create space");
}
int main(void)
{
easy_tramp(test);
return 0;
}