/*********************************************************************
* FileName:        Supporting.h
* Processor:       18F4520
* Compiler:        MCC18 
*
* Author               Date        Comment
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* <your name here>
********************************************************************/
#ifndef __SUPPORTING_H__
#define __SUPPORTING_H__

/** Constants visible to all files ***/
#define EXAMPLE 100

/** Variables visible to all files ***/
extern unsigned char globalVariable;

/** Functions visible to all files. ***/
int exampleFunction(int x);

#endif