mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
14 lines
236 B
C
14 lines
236 B
C
|
/* This program will most likely crash on systems that need shorts and ints
|
||
|
to be word aligned
|
||
|
*/
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
char buf[12];
|
||
|
short sval = 4;
|
||
|
int ival = 3;
|
||
|
*(short *)(buf+1) = sval;
|
||
|
*(int *)(buf+1) = ival;
|
||
|
exit (0);
|
||
|
}
|