Commit ab2a48ae authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

ntdll: Remove superfluous semicolons.

parent a7aa7cb8
...@@ -391,7 +391,7 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context ) ...@@ -391,7 +391,7 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
/**********************************************************************/ /**********************************************************************/
#ifdef DEFINE_REGS_ENTRYPOINT #ifdef DEFINE_REGS_ENTRYPOINT
DEFINE_REGS_ENTRYPOINT( RtlRaiseException, 4, 4 ); DEFINE_REGS_ENTRYPOINT( RtlRaiseException, 4, 4 )
#else #else
void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec ) void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec )
{ {
...@@ -483,7 +483,7 @@ void WINAPI __regs_RtlUnwind( EXCEPTION_REGISTRATION_RECORD* pEndFrame, PVOID un ...@@ -483,7 +483,7 @@ void WINAPI __regs_RtlUnwind( EXCEPTION_REGISTRATION_RECORD* pEndFrame, PVOID un
/**********************************************************************/ /**********************************************************************/
#ifdef DEFINE_REGS_ENTRYPOINT #ifdef DEFINE_REGS_ENTRYPOINT
DEFINE_REGS_ENTRYPOINT( RtlUnwind, 16, 16 ); DEFINE_REGS_ENTRYPOINT( RtlUnwind, 16, 16 )
#else #else
void WINAPI RtlUnwind( PVOID pEndFrame, PVOID unusedEip, void WINAPI RtlUnwind( PVOID pEndFrame, PVOID unusedEip,
PEXCEPTION_RECORD pRecord, PVOID returnEax ) PEXCEPTION_RECORD pRecord, PVOID returnEax )
......
...@@ -472,7 +472,7 @@ void WINAPI __regs_relay_call_from_32_regs( struct relay_descr *descr, unsigned ...@@ -472,7 +472,7 @@ void WINAPI __regs_relay_call_from_32_regs( struct relay_descr *descr, unsigned
} }
} }
extern void WINAPI relay_call_from_32_regs(void); extern void WINAPI relay_call_from_32_regs(void);
DEFINE_REGS_ENTRYPOINT( relay_call_from_32_regs, 16, 16 ); DEFINE_REGS_ENTRYPOINT( relay_call_from_32_regs, 16, 16 )
/*********************************************************************** /***********************************************************************
...@@ -945,8 +945,8 @@ void WINAPI __regs_SNOOP_Return( CONTEXT86 *context ) ...@@ -945,8 +945,8 @@ void WINAPI __regs_SNOOP_Return( CONTEXT86 *context )
} }
/* assembly wrappers that save the context */ /* assembly wrappers that save the context */
DEFINE_REGS_ENTRYPOINT( SNOOP_Entry, 0, 0 ); DEFINE_REGS_ENTRYPOINT( SNOOP_Entry, 0, 0 )
DEFINE_REGS_ENTRYPOINT( SNOOP_Return, 0, 0 ); DEFINE_REGS_ENTRYPOINT( SNOOP_Return, 0, 0 )
#else /* __i386__ */ #else /* __i386__ */
......
...@@ -732,7 +732,7 @@ void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs ) ...@@ -732,7 +732,7 @@ void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs )
*context = *regs; *context = *regs;
save_fpu( context ); save_fpu( context );
} }
DEFINE_REGS_ENTRYPOINT( get_cpu_context, 4, 4 ); DEFINE_REGS_ENTRYPOINT( get_cpu_context, 4, 4 )
/*********************************************************************** /***********************************************************************
......
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