1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-09 02:36:12 -07:00
|
|
|
#include "m.h"
|
|
|
|
|
1997-02-01 09:40:41 -08:00
|
|
|
#ifndef ARCH_SIXTYFOUR
|
1995-05-09 02:36:12 -07:00
|
|
|
long intval = 0x41424344L;
|
|
|
|
char * bigendian = "ABCD";
|
|
|
|
char * littleendian = "DCBA";
|
|
|
|
#else
|
|
|
|
long intval = 0x4142434445464748L;
|
|
|
|
char * bigendian = "ABCDEFGH";
|
|
|
|
char * littleendian = "HGFEDCBA";
|
|
|
|
#endif
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
main(void)
|
1995-05-09 02:36:12 -07:00
|
|
|
{
|
|
|
|
long n[2];
|
|
|
|
char * p;
|
|
|
|
|
|
|
|
n[0] = intval;
|
|
|
|
n[1] = 0;
|
|
|
|
p = (char *) n;
|
|
|
|
if (strcmp(p, bigendian) == 0)
|
|
|
|
exit(0);
|
|
|
|
if (strcmp(p, littleendian) == 0)
|
|
|
|
exit(1);
|
|
|
|
exit(2);
|
|
|
|
}
|