diff --git a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy.h b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy.h index dec01829a234..139e245061ae 100644 --- a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy.h +++ b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the BLAS Level 1 routine `zcopy`. */ -#ifndef ZCOPY_H -#define ZCOPY_H +#ifndef STDLIB_BLAS_BASE_ZCOPY_H +#define STDLIB_BLAS_BASE_ZCOPY_H #include "stdlib/blas/base/shared.h" @@ -45,4 +45,4 @@ void API_SUFFIX(c_zcopy_ndarray)( const CBLAS_INT N, const void *X, const CBLAS_ } #endif -#endif // !ZCOPY_H +#endif // !STDLIB_BLAS_BASE_ZCOPY_H diff --git a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_cblas.h b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_cblas.h index 849871aa2235..2064aee975e0 100644 --- a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_cblas.h +++ b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_cblas.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_zcopy`. */ -#ifndef ZCOPY_CBLAS_H -#define ZCOPY_CBLAS_H +#ifndef STDLIB_BLAS_BASE_ZCOPY_CBLAS_H +#define STDLIB_BLAS_BASE_ZCOPY_CBLAS_H #include "stdlib/blas/base/shared.h" @@ -40,4 +40,4 @@ void API_SUFFIX(cblas_zcopy)( const CBLAS_INT N, const void *X, const CBLAS_INT } #endif -#endif // !ZCOPY_CBLAS_H +#endif // !STDLIB_BLAS_BASE_ZCOPY_CBLAS_H diff --git a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_fortran.h b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_fortran.h index 3094193b2c32..97939211def0 100644 --- a/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_fortran.h +++ b/lib/node_modules/@stdlib/blas/base/zcopy/include/stdlib/blas/base/zcopy_fortran.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `zcopy`. */ -#ifndef ZCOPY_FORTRAN_H -#define ZCOPY_FORTRAN_H +#ifndef STDLIB_BLAS_BASE_ZCOPY_FORTRAN_H +#define STDLIB_BLAS_BASE_ZCOPY_FORTRAN_H /* * 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). @@ -38,4 +38,4 @@ void zcopy( const int *, const void *, const int *, void *, const int * ); } #endif -#endif // !ZCOPY_FORTRAN_H +#endif // !STDLIB_BLAS_BASE_ZCOPY_FORTRAN_H diff --git a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot.h b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot.h index a885b4857d4f..431381ef8d48 100644 --- a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot.h +++ b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the BLAS Level 1 routine `zdrot`. */ -#ifndef ZDROT_H -#define ZDROT_H +#ifndef STDLIB_BLAS_BASE_ZDROT_H +#define STDLIB_BLAS_BASE_ZDROT_H #include "stdlib/blas/base/shared.h" @@ -45,4 +45,4 @@ void API_SUFFIX(c_zdrot_ndarray)( const CBLAS_INT N, void *X, const CBLAS_INT st } #endif -#endif // !ZDROT_H +#endif // !STDLIB_BLAS_BASE_ZDROT_H diff --git a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_cblas.h b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_cblas.h index 7851220ce025..fd7b8d97d5d5 100644 --- a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_cblas.h +++ b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_cblas.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_zdrot`. */ -#ifndef ZDROT_CBLAS_H -#define ZDROT_CBLAS_H +#ifndef STDLIB_BLAS_BASE_ZDROT_CBLAS_H +#define STDLIB_BLAS_BASE_ZDROT_CBLAS_H #include "stdlib/blas/base/shared.h" @@ -40,4 +40,4 @@ void API_SUFFIX(cblas_zdrot)( const CBLAS_INT N, void *X, const CBLAS_INT stride } #endif -#endif // !ZDROT_CBLAS_H +#endif // !STDLIB_BLAS_BASE_ZDROT_CBLAS_H diff --git a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_fortran.h b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_fortran.h index 567b3f576965..28941fa04c73 100644 --- a/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_fortran.h +++ b/lib/node_modules/@stdlib/blas/base/zdrot/include/stdlib/blas/base/zdrot_fortran.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `zdrot`. */ -#ifndef ZDROT_FORTRAN_H -#define ZDROT_FORTRAN_H +#ifndef STDLIB_BLAS_BASE_ZDROT_FORTRAN_H +#define STDLIB_BLAS_BASE_ZDROT_FORTRAN_H /* * 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). @@ -38,4 +38,4 @@ void zdrot( const CBLAS_INT *, void *, const CBLAS_INT *, void *, const CBLAS_IN } #endif -#endif // !ZDROT_FORTRAN_H +#endif // !STDLIB_BLAS_BASE_ZDROT_FORTRAN_H diff --git a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal.h b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal.h index c698445dfcaf..70de35344a6b 100644 --- a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal.h +++ b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the BLAS Level 1 routine `zscal`. */ -#ifndef ZSCAL_H -#define ZSCAL_H +#ifndef STDLIB_BLAS_BASE_ZSCAL_H +#define STDLIB_BLAS_BASE_ZSCAL_H #include "stdlib/blas/base/shared.h" #include "stdlib/complex/float64/ctor.h" @@ -46,4 +46,4 @@ void API_SUFFIX(c_zscal_ndarray)( const CBLAS_INT N, const stdlib_complex128_t a } #endif -#endif // !ZSCAL_H +#endif // !STDLIB_BLAS_BASE_ZSCAL_H diff --git a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_cblas.h b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_cblas.h index baf490d2b00a..ce6b2ecc63d5 100644 --- a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_cblas.h +++ b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_cblas.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_zscal`. */ -#ifndef ZSCAL_CBLAS_H -#define ZSCAL_CBLAS_H +#ifndef STDLIB_BLAS_BASE_ZSCAL_CBLAS_H +#define STDLIB_BLAS_BASE_ZSCAL_CBLAS_H #include "stdlib/blas/base/shared.h" #include "stdlib/complex/float64/ctor.h" @@ -41,4 +41,4 @@ void API_SUFFIX(cblas_zscal)( const CBLAS_INT N, const stdlib_complex128_t alpha } #endif -#endif // !ZSCAL_CBLAS_H +#endif // !STDLIB_BLAS_BASE_ZSCAL_CBLAS_H diff --git a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_fortran.h b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_fortran.h index a8205aae7770..2fb85030c13c 100644 --- a/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_fortran.h +++ b/lib/node_modules/@stdlib/blas/base/zscal/include/stdlib/blas/base/zscal_fortran.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `zscal`. */ -#ifndef ZSCAL_FORTRAN_H -#define ZSCAL_FORTRAN_H +#ifndef STDLIB_BLAS_BASE_ZSCAL_FORTRAN_H +#define STDLIB_BLAS_BASE_ZSCAL_FORTRAN_H #include "stdlib/complex/float64/ctor.h" @@ -40,4 +40,4 @@ void zscal( const int *, const stdlib_complex128_t *, void *, const int * ); } #endif -#endif // !ZSCAL_FORTRAN_H +#endif // !STDLIB_BLAS_BASE_ZSCAL_FORTRAN_H diff --git a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap.h b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap.h index 659234aef87e..b4ce86a1e5bf 100644 --- a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap.h +++ b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the BLAS Level 1 routine `zswap`. */ -#ifndef ZSWAP_H -#define ZSWAP_H +#ifndef STDLIB_BLAS_BASE_ZSWAP_H +#define STDLIB_BLAS_BASE_ZSWAP_H #include "stdlib/blas/base/shared.h" @@ -45,4 +45,4 @@ void API_SUFFIX(c_zswap_ndarray)( const CBLAS_INT N, void *X, const CBLAS_INT st } #endif -#endif // !ZSWAP_H +#endif // !STDLIB_BLAS_BASE_ZSWAP_H diff --git a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_cblas.h b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_cblas.h index d8bb38bcd0e9..edcfa00830a1 100644 --- a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_cblas.h +++ b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_cblas.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_zswap`. */ -#ifndef ZSWAP_CBLAS_H -#define ZSWAP_CBLAS_H +#ifndef STDLIB_BLAS_BASE_ZSWAP_CBLAS_H +#define STDLIB_BLAS_BASE_ZSWAP_CBLAS_H #include "stdlib/blas/base/shared.h" @@ -40,4 +40,4 @@ void API_SUFFIX(cblas_zswap)( const CBLAS_INT N, void *X, const CBLAS_INT stride } #endif -#endif // !ZSWAP_CBLAS_H +#endif // !STDLIB_BLAS_BASE_ZSWAP_CBLAS_H diff --git a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_fortran.h b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_fortran.h index 85d3327bf034..f9a768301dfe 100644 --- a/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_fortran.h +++ b/lib/node_modules/@stdlib/blas/base/zswap/include/stdlib/blas/base/zswap_fortran.h @@ -19,8 +19,8 @@ /** * Header file containing function declarations for the Fortran interface to the BLAS Level 1 routine `zswap`. */ -#ifndef ZSWAP_FORTRAN_H -#define ZSWAP_FORTRAN_H +#ifndef STDLIB_BLAS_BASE_ZSWAP_FORTRAN_H +#define STDLIB_BLAS_BASE_ZSWAP_FORTRAN_H /* * 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). @@ -38,4 +38,4 @@ void zswap( const int *, void *, const int *, void *, const int * ); } #endif -#endif // !ZSWAP_FORTRAN_H +#endif // !STDLIB_BLAS_BASE_ZSWAP_FORTRAN_H