Fix compilation error "too few arguments to function 'longjmp'"
Origin: e7a12fa28c
Bug-MacPorts: https://trac.macports.org/ticket/61356
This commit is contained in:
committed by
Tatsuya Kinoshita
parent
f1fd7215d2
commit
428f9e8267
@@ -181,7 +181,7 @@ typedef RETSIGTYPE MySignalHandler;
|
||||
#endif /* __MINGW32_VERSION */
|
||||
#else
|
||||
# define SETJMP(env) setjmp(env)
|
||||
# define LONGJMP(env,val) longjmp(env)
|
||||
# define LONGJMP(env,val) longjmp(env, val)
|
||||
# define JMP_BUF jmp_buf
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user