* cygerrno.h: Nevermind.

This commit is contained in:
Christopher Faylor 2010-04-20 03:45:27 +00:00
parent c0f1ded4c4
commit 2ac91a1483
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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)));