aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-12-01 16:33:14 +0100
committerAnton Khirnov <anton@khirnov.net>2014-12-01 16:33:14 +0100
commit8893103105296f8d798e560483b74f3bd91f2549 (patch)
tree220a2ba7eedb9329d3f9b4da43a7a1ca321fa6f8
parent9d55ae9fb81350e07e37d18ba1169a78f699fda5 (diff)
Add double inclusion guards to the header.
-rw-r--r--brill_data.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/brill_data.h b/brill_data.h
index a3f897b..cd26270 100644
--- a/brill_data.h
+++ b/brill_data.h
@@ -15,6 +15,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef BRILL_DATA_H
+#define BRILL_DATA_H
+
#include <stdint.h>
#include <stddef.h>
@@ -186,3 +189,5 @@ int bd_eval_metric(BDContext *bd, const double *rho, int nb_coords_rho,
const double *z, int nb_coords_z,
const unsigned int comp[2], const unsigned int diff_order[2],
double *out);
+
+#endif /* BRILL_DATA_H */