diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-15 17:12:01 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-15 17:12:01 -0700 |
commit | 2473b41e244212a7e841ce7f791ce4566adbede7 (patch) | |
tree | 0b5e3217845ddfdba0ecf96421a94ad273206145 /mpi | |
parent | 6742e3e96b3387bbea484c7278305cab1bd5397e (diff) | |
download | txr-2473b41e244212a7e841ce7f791ce4566adbede7.tar.gz txr-2473b41e244212a7e841ce7f791ce4566adbede7.tar.bz2 txr-2473b41e244212a7e841ce7f791ce4566adbede7.zip |
Remove include guards from MPI headers.
* mpi/mpi-config.h, mpi/mpi.h: These headers do not
require include guards. They included only once.
Diffstat (limited to 'mpi')
-rw-r--r-- | mpi/mpi-config.h | 7 | ||||
-rw-r--r-- | mpi/mpi.h | 5 |
2 files changed, 0 insertions, 12 deletions
diff --git a/mpi/mpi-config.h b/mpi/mpi-config.h index 9d3df110..c227f928 100644 --- a/mpi/mpi-config.h +++ b/mpi/mpi-config.h @@ -1,9 +1,6 @@ /* Default configuration for MPI library */ /* $Id: mpi-config.h,v 1.1 2004/02/08 04:29:29 sting Exp $ */ -#ifndef MPI_CONFIG_H_ -#define MPI_CONFIG_H_ - /* For boolean options, 0 = no @@ -79,7 +76,3 @@ #ifndef MP_COMPAT_MACROS #define MP_COMPAT_MACROS 0 /* define compatibility macros? */ #endif - -#endif /* ifndef MPI_CONFIG_H_ */ - - @@ -9,9 +9,6 @@ $Id: mpi.h,v 1.1 2004/02/08 04:29:29 sting Exp $ */ -#ifndef _H_MPI_ -#define _H_MPI_ - #include "mpi-config.h" #if MP_DEBUG @@ -253,5 +250,3 @@ int mp_char2value(char ch, int r); /* Error strings */ const char *mp_strerror(mp_err ec); - -#endif /* end _H_MPI_ */ |