diff options
author | Christopher Faylor <me@cgf.cx> | 2010-04-20 03:45:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2010-04-20 03:45:27 +0000 |
commit | 2ac91a14831702681737bfac01e0772f04375b49 (patch) | |
tree | 17a5e9f035328b402038712fd09b9f1ede816779 | |
parent | c0f1ded4c43f3a659933c671efdc272ddd421557 (diff) | |
download | cygnal-2ac91a14831702681737bfac01e0772f04375b49.tar.gz cygnal-2ac91a14831702681737bfac01e0772f04375b49.tar.bz2 cygnal-2ac91a14831702681737bfac01e0772f04375b49.zip |
* cygerrno.h: Nevermind.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/cygerrno.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 19baa9b04..6938f4986 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2010-04-19 Christopher Faylor <me+cygwin@cgf.cx> + * cygerrno.h: Nevermind. + +2010-04-19 Christopher Faylor <me+cygwin@cgf.cx> + * cygerrno.h: Protect use of NTSTATUS for only when we need it. 2010-04-19 Christopher Faylor <me+cygwin@cgf.cx> diff --git a/winsup/cygwin/cygerrno.h b/winsup/cygwin/cygerrno.h index d1a6c6a63..e1a1af07d 100644 --- a/winsup/cygwin/cygerrno.h +++ b/winsup/cygwin/cygerrno.h @@ -13,9 +13,7 @@ details. */ #include <errno.h> void __stdcall seterrno_from_win_error (const char *file, int line, DWORD code) __attribute__ ((regparm(3))); -#ifdef _NTDLL_H void __stdcall seterrno_from_nt_status (const char *file, int line, NTSTATUS status) __attribute__ ((regparm(3))); -#endif void __stdcall seterrno (const char *, int line) __attribute__ ((regparm(2))); int __stdcall geterrno_from_win_error (DWORD code = GetLastError (), int deferrno = 13 /*EACCESS*/) __attribute__ ((regparm(2))); |