Subversion Repositories HelenOS

Rev

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

Rev 2128 Rev 2465
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2006 Josef Cejka
2
 * Copyright (c) 2007 Michal Kebrt
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
/** @addtogroup libcarm32  
29
/** @addtogroup libcarm32  
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 * @ingroup libcarm32  
33
 *  @brief Limits declarations.
34
 */
34
 */
35
 
35
 
36
#ifndef LIBC_arm32__LIMITS_H_
36
#ifndef LIBC_arm32__LIMITS_H_
37
#define LIBC_arm32__LIMITS_H_
37
#define LIBC_arm32__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
/** @}
46
/** @}
47
 */
47
 */