Skip to content

Commit

Permalink
don't need _setjmpex
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyakurdyukov authored Jan 29, 2024
1 parent 7b7b0e1 commit 9582938
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions irfanview/plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
#include <stdint.h>
#include <setjmp.h>
#if defined(__GNUC__) && defined(__x86_64__)
int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(jmp_buf,void*);
#undef setjmp
#define setjmp(buf) _setjmpex(buf, NULL)
#define setjmp(buf) _setjmp(buf, NULL)
#endif
#include "jpeglib.h"

Expand Down

0 comments on commit 9582938

Please sign in to comment.