URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-sparc/] [byteorder.h] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
/* $Id: byteorder.h,v 1.1 2005-12-20 11:32:11 jcastillo Exp $ */ #ifndef _SPARC_BYTEORDER_H #define _SPARC_BYTEORDER_H #define ntohl(x) x #define ntohs(x) x #define htonl(x) x #define htons(x) x #ifdef __KERNEL__ #define __BIG_ENDIAN #endif #define __BIG_ENDIAN_BITFIELD #endif /* !(_SPARC_BYTEORDER_H) */
Go to most recent revision | Compare with Previous | Blame | View Log