Add case for non sparc / non i386 SYSDEPS_CallOnStack.

This commit is contained in:
Marcus Meissner 2002-11-11 19:54:41 +00:00 committed by Alexandre Julliard
parent 09a49d4a17
commit 1ab0ee300b
1 changed files with 7 additions and 1 deletions

View File

@ -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__) */
/***********************************************************************