]> sourceware.org Git - newlib-cygwin.git/commitdiff
Define __s64 and __u64 cygwin-2_0_0-release
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 27 Apr 2015 12:39:57 +0000 (14:39 +0200)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 27 Apr 2015 12:40:27 +0000 (14:40 +0200)
        * include/asm/types.h: Add __s64 and __u64 types.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/ChangeLog
winsup/cygwin/include/asm/types.h

index 592344286ece48e2e74d25bd2722c84ff022df35..43bbbc1aed7f4894fa9c23906aeade14c9e7bbc6 100644 (file)
@@ -1,3 +1,7 @@
+2015-04-27  Corinna Vinschen  <corinna@vinschen.de>
+
+       * include/asm/types.h: Add __s64 and __u64 types.
+
 2015-04-23  Corinna Vinschen  <corinna@vinschen.de>
 
        * path.cc (path_conv::set_nt_native_path): New function.
index 19cc2ca60279c245138d3393b047cd884d437509..dc51af63a6f660fc137119f80b96249ef84deab7 100644 (file)
@@ -1,6 +1,6 @@
 /* asm/types.h
 
-   Copyright 1998, 2000, 2001 Red Hat, Inc.
+   Copyright 1998, 2000, 2001, 2015 Red Hat, Inc.
 
 This file is part of Cygwin.
 
@@ -20,4 +20,8 @@ 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 */
This page took 0.034999 seconds and 5 git commands to generate.