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 31... Line 31...
31
 */
31
 */
32
/** @file
32
/** @file
33
 * @ingroup libcmips32eb   
33
 * @ingroup libcmips32eb   
34
 */
34
 */
35
 
35
 
36
#ifndef __mips32__LIMITS_H__
36
#ifndef LIBC_mips32__LIMITS_H_
37
#define __mips32__LIMITS_H__
37
#define LIBC_mips32__LIMITS_H_
38
 
38
 
39
# define LONG_MIN MIN_INT32
39
# define LONG_MIN MIN_INT32
40
# define LONG_MAX MAX_INT32
40
# define LONG_MAX MAX_INT32
41
# define ULONG_MIN MIN_UINT32
41
# define ULONG_MIN MIN_UINT32
42
# define ULONG_MAX MAX_UINT32
42
# define ULONG_MAX MAX_UINT32
43
 
43
 
44
#endif
44
#endif
45
 
45
 
46
 
-
 
47
 
-
 
48
 /** @}
46
/** @}
49
 */
47
 */
50
 
-