Subversion Repositories HelenOS

Rev

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

Rev 2145 Rev 2323
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 
-
 
30
/** @addtogroup arm32boot
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 */
-
 
35
 
-
 
36
 
29
#ifndef TYPES_H__
37
#ifndef BOOT_arm32_TYPES_H
30
#define TYPES_H__
38
#define BOOT_arm32_TYPES_H
-
 
39
 
31
 
40
 
32
#include <gentypes.h>
41
#include <gentypes.h>
33
 
42
 
34
typedef signed char int8_t;
43
typedef signed char int8_t;
35
 
44
 
Line 39... Line 48...
39
typedef unsigned long long uint64_t;
48
typedef unsigned long long uint64_t;
40
 
49
 
41
typedef uint32_t uintptr_t;
50
typedef uint32_t uintptr_t;
42
typedef uint32_t unative_t;
51
typedef uint32_t unative_t;
43
 
52
 
-
 
53
 
44
#endif
54
#endif
-
 
55
 
-
 
56
 
-
 
57
/** @}
-
 
58
 */
-
 
59