crt: Show error message when some of __xi_a - __xi_z callbacks fails at startup

Currently we are just exiting application with status code 255 on error.
Change it to _amsg_exit() which also exit application with status code 255
but it also show GUI error message or print it to console.

Use error message 10 which shows abort information on msvcrt builds.

Signed-off-by: LIU Hao <lh_mouse@126.com>
diff --git a/mingw-w64-crt/crt/crtexe.c b/mingw-w64-crt/crt/crtexe.c
index 037c36c..35e1933 100644
--- a/mingw-w64-crt/crt/crtexe.c
+++ b/mingw-w64-crt/crt/crtexe.c
@@ -225,7 +225,7 @@
 	  _configthreadlocale (-1);
 
 	if (_initterm_e (__xi_a, __xi_z) != 0)
-	  return 255;
+	  _amsg_exit (10); /* _RT_ABORT */
 
 	startinfo.newmode = _newmode;
 #ifdef _UNICODE