Commit 8eec66b2 authored by Bernd Paysan's avatar Bernd Paysan Committed by Alexandre Julliard

Added a stub for setjmp.

parent 15ed9616
......@@ -266,7 +266,7 @@ init CRTDLL_Init
261 stub _scalb
262 stub _searchenv
263 stub _seterrormode
264 stub _setjmp
264 cdecl _setjmp (ptr) CRTDLL__setjmp
265 cdecl _setmode(long long) CRTDLL__setmode
266 stub _setsystime
267 cdecl _sleep(long) CRTDLL__sleep
......
......@@ -304,6 +304,14 @@ void __cdecl CRTDLL__local_unwind2( PEXCEPTION_FRAME endframe, DWORD nr )
{
TRACE("(%p,%ld)\n",endframe,nr);
}
/*******************************************************************
* _setjmp (CRTDLL.264)
*/
INT __cdecl CRTDLL__setjmp(LPDWORD *jmpbuf)
{
FIXME(":(%p): stub\n",jmpbuf);
return 0;
}
/*********************************************************************
* _read (CRTDLL.256)
*
......
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