Welcome to mirror list, hosted at ThFree Co, Russian Federation.

types.h « asm « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be1177d3cb3b86e4b11fdb16722120c3b19a42ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _ASM_TYPES_H
#define _ASM_TYPES_H

typedef __signed__ char __s8;
typedef unsigned char __u8;

typedef __signed__ short __s16;
typedef unsigned short __u16;

typedef __signed__ int __s32;
typedef unsigned int __u32;

#endif /* _ASM_TYPES_H */