Skip to content

Commit 967b40b

Browse files
authored
refactor: update include guards
Signed-off-by: Athan <[email protected]>
1 parent 082d521 commit 967b40b

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the BLAS Level 1 routine `zdscal`.
2121
*/
22-
#ifndef ZDSCAL_H
23-
#define ZDSCAL_H
22+
#ifndef STDLIB_BLAS_BASE_ZDSCAL_H
23+
#define STDLIB_BLAS_BASE_ZDSCAL_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float64/ctor.h"
@@ -46,4 +46,4 @@ void API_SUFFIX(c_zdscal_ndarray)( const CBLAS_INT N, const double alpha, void *
4646
}
4747
#endif
4848

49-
#endif // !ZDSCAL_H
49+
#endif // !STDLIB_BLAS_BASE_ZDSCAL_H

0 commit comments

Comments
 (0)