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

21 lines
288 B
C

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