Added a stub for setjmp.

This commit is contained in:
Bernd Paysan 1999-11-12 00:57:49 +00:00 committed by Alexandre Julliard
parent 15ed96161f
commit 8eec66b213
2 changed files with 9 additions and 1 deletions

View File

@ -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

View File

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