OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [libcsupport/] [include/] [stdint.h] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 * stdint.h
3
 *
4
 * ISO C99 integer types
5
 *
6
 * stdint.h,v 1.1 2002/04/16 13:23:40 joel Exp
7
 */
8
 
9
#ifndef __STDINT_H
10
#define __STDINT_H
11
 
12
#ifdef __cplusplus
13
extern "C" {
14
#endif
15
 
16
typedef signed char             int8_t;
17
typedef short int               int16_t;
18
typedef int                     int32_t;
19
typedef long int                int64_t;
20
 
21
typedef unsigned char           uint8_t;
22
typedef unsigned short int      uint16_t;
23
typedef unsigned int            uint32_t;
24
typedef unsigned long int       uint64_t;
25
 
26
#ifdef __cplusplus
27
}
28
#endif
29
 
30
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.