Commit 1ab0ee30 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Add case for non sparc / non i386 SYSDEPS_CallOnStack.

parent 09a49d4a
......@@ -273,7 +273,13 @@ void SYSDEPS_CallOnStack( void (*func)(LPVOID), LPVOID arg )
while(1); /* avoid warning */
}
# endif /* !defined(__GNUC__) */
#endif /* !defined(__i386__) */
#else /* !sparc, !i386 */
void SYSDEPS_CallOnStack( void (*func)(LPVOID), LPVOID arg )
{
func( arg );
while(1); /* avoid warning */
}
#endif /* !defined(__i386__) && !defined(__sparc__) */
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment