From 0939a3f7f23b8ed179e42df64e4ec5fde5b62658 Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Thu, 16 Apr 2020 00:07:08 +0200 Subject: [PATCH] winegcc: Reorder DECLSPEC_NORETURN on error(). Signed-off-by: Serge Gautherie Signed-off-by: Alexandre Julliard --- tools/winegcc/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winegcc/utils.h b/tools/winegcc/utils.h index 3d6b8f3665b..cb4778fa09a 100644 --- a/tools/winegcc/utils.h +++ b/tools/winegcc/utils.h @@ -52,7 +52,7 @@ enum target_platform PLATFORM_CYGWIN }; -void error(const char* s, ...) DECLSPEC_NORETURN; +void DECLSPEC_NORETURN error(const char* s, ...); void* xmalloc(size_t size); void* xrealloc(void* p, size_t size);