diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 21 | ||||
-rw-r--r-- | winsup/cygwin/include/stdint.h | 4 |
2 files changed, 23 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index e0814bcfe..aab587fd5 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -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 @@ -13,6 +17,23 @@ 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. 2005-05-19 Corinna Vinschen <corinna@vinschen.de> diff --git a/winsup/cygwin/include/stdint.h b/winsup/cygwin/include/stdint.h index 406565cc0..5456239fb 100644 --- a/winsup/cygwin/include/stdint.h +++ b/winsup/cygwin/include/stdint.h @@ -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 */ |