prism2.device: Compiler delint
[AROS.git] / arch / all-hosted / bootstrap / ui.c
blobf3d2008a44d30d87a57c01719c9276093a38dfc5
1 #include <stdarg.h>
2 #include <stdio.h>
4 void DisplayError(char *fmt, ...)
6 va_list args;
8 va_start(args, fmt);
9 vprintf(fmt, args);
10 va_end(args);
12 printf("\n");