summaryrefslogtreecommitdiff
path: root/src/c_fl_error.h
blob: b8ffb00136b5afeb221925b4528776815d384f87 (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


//  Programmed by Jedidiah Barber
//  Released into the public domain


#ifndef FL_ERROR_GUARD
#define FL_ERROR_GUARD


extern "C" const int error_bsize;


extern "C" void fl_error_default_warning(const char * m);
extern "C" void fl_error_default_error(const char * m);
extern "C" void fl_error_default_fatal(const char * m);


extern "C" void fl_error_set_hooks();


#endif