2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
10 #include "bootstrap.h"
13 void DisplayError(char *fmt
, ...)
19 vsnprintf(buf
, sizeof(buf
), fmt
, args
);
22 str
= StrConvert(buf
);
23 MessageBox(NULL
, str
, TEXT("AROS bootstrap error"), MB_OK
|MB_ICONSTOP
);