mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
21 lines
344 B
C
21 lines
344 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "data1.h"
|
||
|
|
||
|
int
|
||
|
main (void)
|
||
|
{
|
||
|
if ((((long) (&a1)) & (ALIGNMENT1 - 1)))
|
||
|
abort ();
|
||
|
if ((((long) (&a2)) & (ALIGNMENT2 - 1)))
|
||
|
abort ();
|
||
|
if ((((long) (&a2)) & (ALIGNMENT3 - 1)))
|
||
|
abort ();
|
||
|
if ((((long) (&a3)) & (ALIGNMENT4 - 1)))
|
||
|
abort ();
|
||
|
|
||
|
printf ("PASS\n");
|
||
|
|
||
|
return(0) ;
|
||
|
}
|