Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/include/xerror.h
blob: 2ae5638d7836eeff73d57b3e03d6a6de923e0222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef XERROR_H
#define XERROR_H
#ifdef __cplusplus
extern "C" {
#endif
    void x_message(CONST char *text, ...);
    void x_error(CONST char *text, ...);
    void x_fatalerror(CONST char *text, ...) NORETURN;
#ifdef __cplusplus
}
#endif
#endif