From 391cd11d3bf38faab3d89d021ffe7877d62cb326 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Wed, 27 Dec 2000 18:39:44 +0000 Subject: [PATCH] Fixed broken prototypes. --- if1632/relay.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/if1632/relay.c b/if1632/relay.c index 4ecc93e6510..f6ad75ec652 100644 --- a/if1632/relay.c +++ b/if1632/relay.c @@ -97,7 +97,7 @@ void WINAPI wine_call_to_16_regs_long ( CONTEXT86 *context, INT nArgs ) /*********************************************************************** * __wine_call_from_16_word */ -WORD __cdecl __wine_call_from_16_word(...) +WORD __cdecl __wine_call_from_16_word(void) { assert( FALSE ); } @@ -105,7 +105,7 @@ WORD __cdecl __wine_call_from_16_word(...) /*********************************************************************** * __wine_call_from_16_long */ -LONG __cdecl __wine_call_from_16_long(...) +LONG __cdecl __wine_call_from_16_long(void) { assert( FALSE ); } @@ -113,7 +113,7 @@ LONG __cdecl __wine_call_from_16_long(...) /*********************************************************************** * __wine_call_from_16_regs */ -void __cdecl __wine_call_from_16_regs(...) +void __cdecl __wine_call_from_16_regs(void) { assert( FALSE ); } @@ -121,7 +121,7 @@ void __cdecl __wine_call_from_16_regs(...) /*********************************************************************** * __wine_call_from_16_thunk */ -void __cdecl __wine_call_from_16_thunk(...) +void __cdecl __wine_call_from_16_thunk(void) { assert( FALSE ); }