msvcrt: Remove WINAPI on static functions where not needed.

This commit is contained in:
Francois Gouget 2013-03-06 15:07:51 +01:00 committed by Alexandre Julliard
parent 6a609c21bb
commit c3913adb9b
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ static const struct
{ EXCEPTION_FLT_UNDERFLOW, MSVCRT__FPE_UNDERFLOW },
};
static LONG WINAPI msvcrt_exception_filter(struct _EXCEPTION_POINTERS *except)
static LONG msvcrt_exception_filter(struct _EXCEPTION_POINTERS *except)
{
LONG ret = EXCEPTION_CONTINUE_SEARCH;
MSVCRT___sighandler_t handler;