1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-27 15:40:47 -08:00
emacs/mps/qa/argerr/0.c
Richard Tucker b6a5d5ca29 Add hopename
Copied from Perforce
 Change: 19336
 ServerID: perforce.ravenbrook.com
1998-02-23 16:12:09 +00:00

22 lines
288 B
C

/* $HopeName$
TEST_HEADER
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;
}