PLUTO  4.0
 All Data Structures Files Functions Variables Enumerations Macros Pages
al.h
1 #ifndef __AL
2 #define __AL
3 
4 /*
5  al.h -- Include file for the AL library.
6  It contains most of the useful includes
7  (e.g. mpi.h)
8 */
9 
10 #include <mpi.h>
11 
12 #include <stdio.h>
13 #include <stdarg.h>
14 #include <stdlib.h>
15 #include <strings.h>
16 #include <math.h>
17 
18 #include "al_defs.h"
19 
20 /* Include AL prototypes */
21 #include "al_proto.h"
22 
23 /* Include AL macros and definitions */
24 #include "al_codes.h"
25 
26 
27 #endif /* End if __AL */
28