mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-17 08:31:09 -08:00
21 lines
277 B
C
21 lines
277 B
C
/* 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;
|
|
}
|