summaryrefslogtreecommitdiff
path: root/src/win95/fail.h
blob: 8c13555133232373675ccd84649d0d544c235f37 (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
/* LotU: Error handling functions.

   Copyright (C) 1995, Jamie Lokier.
   Written for Rebellion Developments, Ltd.

   Permission to use, copy, modify and distribute this file for any
   purpose by Rebellion Developments, Ltd. is hereby granted.  If you
   want to use this file outside the company, please let me know.
*/

#ifndef __fail_h
#define __fail_h 1

#ifdef __cplusplus
extern "C" {
#endif

#ifdef _MSC_VER
#define VARARG_DECL __cdecl
#else
#define VARARG_DECL
#endif

extern void VARARG_DECL fail (const char * __format, ...);

#ifdef __cplusplus
}
#endif

#endif /* __fail_h */