Skip to content

Commit a4f2ca6

Browse files
authored
refactor: update include guards and fix include
Signed-off-by: Athan <[email protected]>
1 parent 56f9199 commit a4f2ca6

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/blas/base/zdscal/include/stdlib/blas/base

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/zdscal/include/stdlib/blas/base/zdscal_fortran.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/complex/float64/ctor.h"
20-
2119
/**
2220
* Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `zdscal`.
2321
*/
24-
#ifndef ZDSCAL_FORTRAN_H
25-
#define ZDSCAL_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_ZDSCAL_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_ZDSCAL_FORTRAN_H
24+
25+
#include "stdlib/complex/float64/ctor.h"
2626

2727
/*
2828
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C/Fortran compiler (a Fortran compiler must be configured to not attach underscores).
@@ -40,4 +40,4 @@ void zdscal( const CBLAS_INT *, const double *, stdlib_complex128_t *, const CBL
4040
}
4141
#endif
4242

43-
#endif // !ZDSCAL_FORTRAN_H
43+
#endif // !STDLIB_BLAS_BASE_ZDSCAL_FORTRAN_H

0 commit comments

Comments
 (0)