mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
Fix return types
svn path=/trunk/; revision=27956
This commit is contained in:
parent
c697530b17
commit
c9a7f7f8f2
2 changed files with 4 additions and 4 deletions
4
reactos/lib/3rdparty/mingw/crt1.c
vendored
4
reactos/lib/3rdparty/mingw/crt1.c
vendored
|
@ -98,11 +98,11 @@ _mingw32_init_fmode (void)
|
||||||
|
|
||||||
/* This function will be called when a trap occurs. Thanks to Jacob
|
/* This function will be called when a trap occurs. Thanks to Jacob
|
||||||
Navia for his contribution. */
|
Navia for his contribution. */
|
||||||
static CALLBACK long
|
static LONG CALLBACK
|
||||||
_gnu_exception_handler (EXCEPTION_POINTERS * exception_data)
|
_gnu_exception_handler (EXCEPTION_POINTERS * exception_data)
|
||||||
{
|
{
|
||||||
void (*old_handler) (int);
|
void (*old_handler) (int);
|
||||||
long action = EXCEPTION_CONTINUE_SEARCH;
|
LONG action = EXCEPTION_CONTINUE_SEARCH;
|
||||||
int reset_fpu = 0;
|
int reset_fpu = 0;
|
||||||
|
|
||||||
switch (exception_data->ExceptionRecord->ExceptionCode)
|
switch (exception_data->ExceptionRecord->ExceptionCode)
|
||||||
|
|
4
reactos/lib/3rdparty/mingw/wcrt1.c
vendored
4
reactos/lib/3rdparty/mingw/wcrt1.c
vendored
|
@ -99,11 +99,11 @@ _mingw32_init_fmode (void)
|
||||||
|
|
||||||
/* This function will be called when a trap occurs. Thanks to Jacob
|
/* This function will be called when a trap occurs. Thanks to Jacob
|
||||||
Navia for his contribution. */
|
Navia for his contribution. */
|
||||||
static CALLBACK long
|
static LONG CALLBACK
|
||||||
_gnu_exception_handler (EXCEPTION_POINTERS * exception_data)
|
_gnu_exception_handler (EXCEPTION_POINTERS * exception_data)
|
||||||
{
|
{
|
||||||
void (*old_handler) (int);
|
void (*old_handler) (int);
|
||||||
long action = EXCEPTION_CONTINUE_SEARCH;
|
LONG action = EXCEPTION_CONTINUE_SEARCH;
|
||||||
int reset_fpu = 0;
|
int reset_fpu = 0;
|
||||||
|
|
||||||
switch (exception_data->ExceptionRecord->ExceptionCode)
|
switch (exception_data->ExceptionRecord->ExceptionCode)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue