mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
23 lines
295 B
C
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;
|
|
}
|