summaryrefslogtreecommitdiff
path: root/Modules/TestBigEndian.c
blob: 377d1b18ea898ffa7673fd6d4a561121135b0592 (plain)
1
2
3
4
5
6
7
8
9
10
int main () {
  /* Are we little or big endian?  From Harbison&Steele.  */
  union
  {
    long l;
    char c[sizeof (long)];
  } u;
  u.l = 1;
  exit (u.c[sizeof (long) - 1] == 1);
}