Cygwin: asm/socket.h: drop outdated casts
[newlib-cygwin.git] / winsup / cygwin / include / asm / types.h
blobaf621fd4506e41adf4b560f5be89a3e3dcbe8c67
1 /* asm/types.h
3 This file is part of Cygwin.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7 details. */
9 #ifndef _ASM_TYPES_H
10 #define _ASM_TYPES_H
12 #include <asm/bitsperlong.h>
14 typedef __signed__ char __s8;
15 typedef unsigned char __u8;
17 typedef __signed__ short __s16;
18 typedef unsigned short __u16;
20 typedef __signed__ int __s32;
21 typedef unsigned int __u32;
23 /* As on Linux. */
24 typedef __signed__ long long __s64;
25 typedef unsigned long long __u64;
27 #endif /* _ASM_TYPES_H */