1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 10:22:48 +02:00

renamed typedefs.h to xburst_types.h

This commit is contained in:
shiyele 2009-06-26 05:02:51 +00:00
parent 84a0c74c10
commit f2007ab163
5 changed files with 21 additions and 30 deletions

View File

@ -21,7 +21,7 @@
#ifndef __JZ4740_H__
#define __JZ4740_H__
#include "typedefs.h"
#include "xburst_types.h"
#ifndef __ASSEMBLY__
#define UCOS_CSP 0

View File

@ -22,7 +22,7 @@
#ifndef __JZ4750_H__
#define __JZ4750_H__
#include "typedefs.h"
#include "xburst_types.h"
#ifndef __ASSEMBLY__
#define UCOS_CSP 0

View File

@ -19,7 +19,7 @@
#ifndef __NANDLIB_H__
#define __NANDLIB_H__
#include "typedefs.h"
#include "xburst_types.h"
#ifndef NULL
#define NULL 0

View File

@ -1,27 +0,0 @@
/*
* Copyright (C) 2009 PI
* Author: Xiangfu Liu <xiangfu.z@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 3 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA
*/
#ifndef __TYPEDEF_H__
#define __TYPEDEF_H__
typedef unsigned int size_t;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
#endif /* __TYPEDEF_H__ */

View File

@ -0,0 +1,18 @@
/*
* Authors: Xiangfu Liu <xiangfu.z@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 3 of the License, or (at your option) any later version.
*/
#ifndef __XBURST_TYPES_H__
#define __XBURST_TYPES_H__
typedef unsigned int size_t;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
#endif /* __XBURST_TYPES_H__ */