MIDI Pipeline Reference Manual  2.8.3
compiler.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Data Reduction Software
5 *
6 * Module name: compiler.h
7 * Description:
8 *
9 *
10 * History:
11 * 03-Feb-03 (jmeisner) Created
12 * 03-Mar-03 (csabet) Added title, directives and included in the MIDI pipeline
13 ***********************************************************
14 **********************************************************/
15 #ifndef _COMPILER_H
16 #define _COMPILER_H
17 
18 /**********************************************************
19 * Include files
20 **********************************************************/
21 
22 /**********************************************************
23 * Constant definitions
24 **********************************************************/
25 /**** For 32 bit Unix systems: ****/
26 #define Int16 short int
27 #define Int32 int
28 #define ERROR(x) {printf("Error code %d, exiting!", x); exit(1);}
29 
30 /**********************************************************
31 * Type definitions
32 **********************************************************/
33 
34 /**********************************************************
35 * Global Variables
36 **********************************************************/
37 
38 /**********************************************************
39 * Function Prototypes
40 **********************************************************/
41 
42 
43 /*********************************************************/
44 #endif
45 /*********************************************************/