1 
2 /* ###--------------------------------------------------------------### */
3 /*									*/
4 /* file		: cst_globals.c						*/
5 /* date		: Dec 17 1994						*/
6 /* version	: v000							*/
7 /* authors	: DUNOYER Julien & ABDALLAH Nizar			*/
8 /* description	: global variables					*/
9 /*									*/
10 /* ###--------------------------------------------------------------### */
11 
12 #include <stdio.h>
13 #include "mut.h"
14 #include "cst.h"
15 
16 unsigned long  CST_STATUS  = CST_SUCCEED;	/* function call status	*/
17 
18 unsigned long  CST_MSGLVL  = CST_MSG__ERR;	/* message level	*/
19 
20 unsigned int   CST_ERRCOD  =  0;		/* error code		*/
21 unsigned int   CST_ERRCNT  =  0;		/* error count		*/
22 unsigned int   CST_MAXERR  = 10;		/* maximum error count	*/
23