blob: d142051c3410229c25fcfaaf3aba4478cffb0b31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* PARSEC HEADER: sl_err.h
*/
#ifndef _SL_ERR_H_
#define _SL_ERR_H_
// sl_err.c implements the following functions
// -------------------------------------------
// void SYSs_InitErrorHandling();
// void SYSs_PanicFunction( char *msg, char *file, unsigned line );
// void SYSs_OutOfMemFunction( char *msg, char *file, unsigned line );
// void SYSs_PError( char *message, ... );
// void SYSs_SError( char *message );
// void SYSs_FError( char *message, char *filename );
#endif
|