mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 18:33:16 +00:00
11 lines
228 B
C
11 lines
228 B
C
![]() |
/* hppa/hp-ux wants pragma outside of function */
|
||
|
#pragma pack 1 /* has to be in column 1 ! */
|
||
|
struct {
|
||
|
char c;
|
||
|
long l;
|
||
|
} s;
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
return sizeof(s) == sizeof(s.c) + sizeof(s.l) ? 0 : 1;
|
||
|
}
|