blob: b55e22968628d7c21d3c546839390b582ed5e726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//*----------------------------------------------------------------------------
//* File Name : std_c.h
//* Object : Standard C Header File
//*
//* 1.0 27/10/02 GR : Creation
//*----------------------------------------------------------------------------
#ifndef std_c_h
#define std_c_h
/*----------------*/
/* Standard types */
/*----------------*/
typedef unsigned int u_int ;
typedef unsigned short u_short ;
typedef unsigned char u_char ;
/* AT91 Register type */
typedef volatile unsigned int at91_reg ;
/*----------------*/
/* Boolean values */
/*----------------*/
#define TRUE 1
#define FALSE 0
#endif /* std_c_h */
|