aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw/include/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/include/setjmp.h')
-rw-r--r--winsup/mingw/include/setjmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/mingw/include/setjmp.h b/winsup/mingw/include/setjmp.h
index 89f045f..91a650c 100644
--- a/winsup/mingw/include/setjmp.h
+++ b/winsup/mingw/include/setjmp.h
@@ -52,7 +52,7 @@ typedef _JBTYPE jmp_buf[_JBLEN];
* The function provided by CRTDLL which appears to do the actual work
* of setjmp.
*/
-int _setjmp (jmp_buf);
+_CRTIMP int __cdecl _setjmp (jmp_buf);
#define setjmp(x) _setjmp(x)
@@ -60,7 +60,7 @@ int _setjmp (jmp_buf);
* Return to the last setjmp call and act as if setjmp had returned
* nVal (which had better be non-zero!).
*/
-void longjmp (jmp_buf, int);
+_CRTIMP void __cdecl longjmp (jmp_buf, int);
#ifdef __cplusplus
}