1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 16:41:17 -08:00
emacs/mps/qa/argerr/3.c
Richard Tucker ee35fc3b96 Update headers
Copied from Perforce
 Change: 18187
 ServerID: perforce.ravenbrook.com
1997-05-16 15:56:37 +01:00

24 lines
338 B
C

/* TEST_HEADER
summary = destroy a space with an unaligned space_t
language = c
link = testlib.o
END_HEADER
*/
#include "testlib.h"
#include "arg.h"
static void test(void)
{
mps_space_t space;
cdie(mps_space_create(&space),
"Create space");
mps_space_destroy(UNALIGNED);
}
int main(void)
{
easy_tramp(test);
return 0;
}