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: c2342efc1a5aec9c24e08c1989f4b95d4ef12e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* asm/types.h

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#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;

/* As on Linux.  Works for both platforms, i686 and x86_64. */
typedef __signed__ long long __s64;
typedef unsigned long long __u64;

#endif /* _ASM_TYPES_H */