1 /***********************************************************************/
5 /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
7 /* Copyright 1996 Institut National de Recherche en Informatique et */
8 /* en Automatique. All rights reserved. This file is distributed */
9 /* under the terms of the GNU Library General Public License, with */
10 /* the special exception on linking described in file ../../LICENSE. */
12 /***********************************************************************/
18 #ifndef ARCH_SIXTYFOUR
19 long intval
= 0x41424344L
;
20 char * bigendian
= "ABCD";
21 char * littleendian
= "DCBA";
23 long intval
= 0x4142434445464748L
;
24 char * bigendian
= "ABCDEFGH";
25 char * littleendian
= "HGFEDCBA";
36 if (strcmp(p
, bigendian
) == 0)
38 if (strcmp(p
, littleendian
) == 0)