]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/stdint.h (INTMAX_C, UINTMAX_C): Fix definition.
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 23 May 2005 13:13:00 +0000 (13:13 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 23 May 2005 13:13:00 +0000 (13:13 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/include/stdint.h

index e0814bcfe5b1767a9b308bd6ca45ddb21e4b9ba6..aab587fd51a66e2ab0cfbb960c1d9bc828dd0c7a 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-23  Eric Blake  <ebb9@byu.net>
+
+       * include/stdint.h (INTMAX_C, UINTMAX_C): Fix definition.
+
 2005-05-21  Christopher Faylor  <cgf@timesys.com>
 
        * spawn.cc (find_exec): Accept a PATH-like string in place of an
 
        * cygmagic: Remove debugging cruft.
 
+2005-05-19  Corinna Vinschen  <corinna@vinschen.de>
+
+       * autoload.cc (RtlDosPathNameToNtPathName_U): Import.
+       (RtlCreateUnicodeStringFromAsciiz): Import.
+       (RtlFreeUnicodeString): Import.
+       * fhandler.cc (fhandler_base::open): Drop wpath since
+       path_conv::get_nt_native_path now allocates the upath Buffer.
+       Remove call to RtlIsDosDeviceName_U.  Free upath.Buffer on
+       return.
+       * ntdll.h (RtlDosPathNameToNtPathName_U): Declare.
+       (RtlCreateUnicodeStringFromAsciiz): Declare.
+       (RtlFreeUnicodeString): Declare.
+       * path.cc: Include ntdll.h.
+       (path_conv::get_nt_native_path): Call RtlDosPathNameToNtPathName_U
+       to generate the correct NT path.  Use RtlCreateUnicodeStringFromAsciiz
+       to allocate Buffer in case of incoming NT paths.
+
 2005-05-19  Corinna Vinschen  <corinna@vinschen.de>
 
        * include/cygwin/in.h: Add comment.
index 406565cc085f24c1e9305abaf0a5b2abde6ff578..5456239fb4fce02a300c8d0fb753dc29e95991d6 100644 (file)
@@ -176,7 +176,7 @@ typedef unsigned long long uintmax_t;
 
 /* Macros for greatest-width integer constant expressions */
 
-#define INTMAX_C(x) x ## L
-#define UINTMAX_C(x) x ## UL
+#define INTMAX_C(x) x ## LL
+#define UINTMAX_C(x) x ## ULL
 
 #endif /* _STDINT_H */
This page took 0.037755 seconds and 5 git commands to generate.