Copyright clean-up (part 1):
[AROS.git] / arch / all-hosted / bootstrap / ui.c
blobb396b65069cd04bd6e0885c2cbd99ac2c57aac93
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdarg.h>
7 #include <stdio.h>
9 void DisplayError(char *fmt, ...)
11 va_list args;
13 va_start(args, fmt);
14 vprintf(fmt, args);
15 va_end(args);
17 printf("\n");