~zarevucky-jiri/helenos/golang2

« back to all changes in this revision

Viewing changes to uspace/runtime/go/core/include/int.h

  • Committer: Ji?? Z?rev?cky
  • Date: 2013-07-22 13:41:46 UTC
  • Revision ID: zarevucky.jiri@gmail.com-20130722134146-nmzo0ccf7pscuqab
More stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef GOCORE_INT_H_
 
3
#define GOCORE_INT_H_
 
4
 
 
5
#include <stdint.h>
 
6
#include <stdbool.h>
 
7
 
 
8
typedef intptr_t intgo;
 
9
typedef uintptr_t uintgo;
 
10
 
 
11
typedef intptr_t intptr;
 
12
typedef uintptr_t uintptr;
 
13
typedef uint8_t uint8;
 
14
typedef int8_t int8;
 
15
typedef uint8_t byte;
 
16
typedef int16_t int16;
 
17
typedef uint16_t uint16;
 
18
typedef int32_t int32;
 
19
typedef uint32_t uint32;
 
20
typedef int64_t int64;
 
21
typedef uint64_t uint64;
 
22
 
 
23
#endif