source: rtems/cpukit/libcsupport/include/stdint.h @ 83333e9

4.104.114.84.95
Last change on this file since 83333e9 was 485e80fa, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/02 at 13:23:40

2002-04-16 Ralf Corsepius <corsepiu@…>

  • include/Makefile.am: Add stdint.h and inttypes.h. (reported by Mike Siers <mikes@…>)
  • include/stdint.h: New file.
  • include/inttypes.h: New file.
  • Property mode set to 100644
File size: 422 bytes
Line 
1/*
2 * stdint.h
3 *
4 * ISO C99 integer types
5 *
6 * $Id$
7 */
8
9#ifndef __STDINT_H
10#define __STDINT_H
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16typedef signed char             int8_t;
17typedef short int               int16_t;
18typedef int                     int32_t;
19typedef long int                int64_t;
20
21typedef unsigned char           uint8_t;
22typedef unsigned short int      uint16_t;
23typedef unsigned int            uint32_t;
24typedef unsigned long int       uint64_t;
25
26#ifdef __cplusplus
27}
28#endif
29
30#endif
Note: See TracBrowser for help on using the repository browser.