Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/util/xerror.c
blob: f7a904f9530446585a1c616658a2c61f9c417124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifdef _plan9_
#include <u.h>
#include <libc.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "config.h"
#include "xerror.h"
#include "aconfig.h"
/*BeOS driver have its own routines in the C++ code */
#ifndef BEOS_DRIVER
/*On windows we use message boxes done in the ui_win32.c code*/
#ifndef WIN32_DRIVER
void x_message(CONST char *text, ...)
{
    va_list ap;
    va_start(ap, text);
    vfprintf(stdout, text, ap);
    fprintf(stdout, "\n");
    va_end(ap);
}

void x_error(CONST char *text, ...)
{
    va_list ap;
    va_start(ap, text);
    vfprintf(stderr, text, ap);
    fprintf(stderr, "\n");
    va_end(ap);
}

void x_fatalerror(CONST char *text, ...)
{
    va_list ap;
    va_start(ap, text);
    vfprintf(stderr, text, ap);
    fprintf(stderr, "\n");
    va_end(ap);
    exit(1);
}
#endif
#endif