Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1826515
  • 博文数量: 286
  • 博客积分: 3713
  • 博客等级: 少校
  • 技术积分: 2275
  • 用 户 组: 普通用户
  • 注册时间: 2012-01-11 09:47
个人简介

http://blog.chinaunix.net/uid/16979052.html

文章分类

全部博文(286)

文章存档

2018年(1)

2017年(16)

2016年(9)

2015年(17)

2014年(15)

2013年(112)

2012年(116)

分类: LINUX

2012-06-28 08:11:11

#ifndef KERNAL_TYPES_INCLUDED
#define KERNAL_TYPES_INCLUDED

typedef unsigned char uint8_t;
typedef char int8_t;
typedef unsigned short uint16_t;
typedef short int16_t;
typedef unsigned int uint32_t;
typedef int int32_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;

typedef unsigned int size_t;
typedef int ssize_t;

typedef unsigned long addr_t;

#define NULL 0

#endif

阅读(1023) | 评论(0) | 转发(0) |
0

上一篇:include/kernel.h

下一篇:kernel/intr_wrap.S

给主人留下些什么吧!~~