libs-base/config/config.align.c
Riccardo Mottola f0bb6a5dcb fix warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37960 72102866-910b-0410-8b05-ffd578937521
2014-06-20 16:57:59 +00:00

44 lines
738 B
C

/* This program will most likely crash on systems that need shorts and ints
to be word aligned
Copyright (C) 2005 Free Software Foundation
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
*/
#include <stdlib.h>
int main ()
{
char *buf = malloc(30);
void *v;
short *sp;
short *sq;
int *ip;
int *iq;
int i;
for (i = 0 ; i < 30; i++)
{
buf[i] = i;
}
v = buf;
sp = (short*)(v + 1);
sq = (short*)(v + 2);
if (*sp == *sq)
{
return 1;
}
ip = (int*)(v + 1);
iq = (int*)(v + 2);
if (*ip == *iq)
{
return 1;
}
return 0;
}