mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-03-04 14:06:13 +08:00
* libc/include/sys/param.h: Remove endian info and include <machine/endian.h> instead. * libc/include/machine/endian.h: New file. * libc/machine/arm/machine/endian.h: Ditto. * libc/machine/arm/machine/param.h: Ditto. * libc/sys/arm/sys/param.h: Removed. * libc/sys/sysvi386/sys/param.h: Ditto. * libc/sys/rtems/sys/param.h: Modified to include <machine/endian.h>.
15 lines
240 B
C
15 lines
240 B
C
/* ARM configuration file; HZ is 100 rather than the default 60 */
|
|
|
|
#ifndef _MACHINE_PARAM_H
|
|
# define _MACHINE_PARAM_H
|
|
|
|
# define HZ (100)
|
|
|
|
#ifdef __ARMEB__
|
|
#define BYTE_ORDER BIG_ENDIAN
|
|
#else
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#endif
|