From 933fb4229f454a475fbd49dd4eba96f8e33eaaef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Wed, 13 Oct 2010 18:35:15 +0200 Subject: [PATCH] Use canonical include guards. Suggested by atgeirr. Template: OPM__HEADER_INCLUDED --- blas_lapack.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blas_lapack.h b/blas_lapack.h index d12621ec9..ac66f625f 100644 --- a/blas_lapack.h +++ b/blas_lapack.h @@ -17,8 +17,8 @@ along with OPM. If not, see . */ -#ifndef BLAS_LAPACK_H_INCLUDED -#define BLAS_LAPACK_H_INCLUDED +#ifndef OPM_BLAS_LAPACK_HEADER_INCLUDED +#define OPM_BLAS_LAPACK_HEADER_INCLUDED #ifdef __cplusplus extern "C" { @@ -101,4 +101,4 @@ double ddot_(const MAT_SIZE_T *n, const double *x, const MAT_SIZE_T *incx, } #endif -#endif /* BLAS_LAPACK_H_INCLUDED */ +#endif /* OPM_BLAS_LAPACK_HEADER_INCLUDED */