Module: wine Branch: master Commit: 9e9e21fdb07d54b29a0fac758879fcc2c3418d8e URL: https://source.winehq.org/git/wine.git/?a=commit;h=9e9e21fdb07d54b29a0fac758...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Mar 19 15:41:48 2020 +0100
process.h: Add quick_exit declaration.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/process.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/msvcrt/process.h b/include/msvcrt/process.h index a3707129ad..80be0e5bf6 100644 --- a/include/msvcrt/process.h +++ b/include/msvcrt/process.h @@ -56,6 +56,7 @@ void __cdecl _cexit(void); void __cdecl _exit(int) DECLSPEC_NORETURN; void __cdecl abort(void) DECLSPEC_NORETURN; void __cdecl exit(int) DECLSPEC_NORETURN; +_ACRTIMP DECLSPEC_NORETURN void __cdecl quick_exit(int); int __cdecl system(const char*);
#ifdef __cplusplus