blob: f7ee056a4446e9ae2cbecf58840425a908de5314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef RT_STDINT_H
#define RT_STDINT_H
#include "assert.h"
typedef unsigned char uchar;
typedef unsigned short int ushort;
typedef unsigned int uint;
typedef unsigned long int ulong;
typedef long long int vlong;
typedef unsigned long long int uvlong;
// Machine specific types
#include <arch_stdint.h>
#endif
|