File: inttypes.h

package info (click to toggle)
libdts 0.0.2-svn-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 2,356 kB
  • ctags: 586
  • sloc: ansic: 13,987; sh: 8,450; makefile: 334
file content (13 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed int int32_t;
#ifdef ARCH_X86
typedef signed long long int64_t;
#endif

typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#ifdef ARCH_X86
typedef unsigned long long uint64_t;
#endif