Subversion Repositories HelenOS

Rev

Rev 1787 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1866
Line 32... Line 32...
32
 * @{
32
 * @{
33
 */
33
 */
34
/** @file
34
/** @file
35
 */
35
 */
36
 
36
 
37
#ifndef __mips32_ENDIAN_H__
37
#ifndef LIBC_mips32_ENDIAN_H_
38
#define __mips32_ENDIAN_H__
38
#define LIBC_mips32_ENDIAN_H_
39
 
39
 
40
#ifndef __LIBC__ENDIAN_H__
40
#ifndef LIBC_ENDIAN_H_
41
# error "Never use <libarch/endian.h> directly - use <endian.h> instead."
41
# error "Never use <libarch/endian.h> directly - use <endian.h> instead."
42
#endif
42
#endif
43
 
43
 
44
#define __BYTE_ORDER __LITTLE_ENDIAN
44
#define __BYTE_ORDER __LITTLE_ENDIAN
45
 
45
 
46
#endif
46
#endif
47
 
47
 
48
 
-
 
49
 /** @}
48
/** @}
50
 */
49
 */
51
 
-