Skip to content

Commit a9776fd

Browse files
authored
refactor: update include header guards for single precision complex packages
PR-URL: #7708 Reviewed-by: Athan Reines <[email protected]>
1 parent 4baa837 commit a9776fd

File tree

17 files changed

+51
-51
lines changed

17 files changed

+51
-51
lines changed

lib/node_modules/@stdlib/blas/base/caxpy/include/stdlib/blas/base/caxpy.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 `caxpy`.
2121
*/
22-
#ifndef CAXPY_H
23-
#define CAXPY_H
22+
#ifndef STDLIB_BLAS_BASE_CAXPY_H
23+
#define STDLIB_BLAS_BASE_CAXPY_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -46,4 +46,4 @@ void API_SUFFIX(c_caxpy_ndarray)( const CBLAS_INT N, const stdlib_complex64_t al
4646
}
4747
#endif
4848

49-
#endif // !CAXPY_H
49+
#endif // !STDLIB_BLAS_BASE_CAXPY_H

lib/node_modules/@stdlib/blas/base/caxpy/include/stdlib/blas/base/caxpy_cblas.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 CBLAS Level 1 routine `cblas_ccopy`.
2121
*/
22-
#ifndef CAXPY_CBLAS_H
23-
#define CAXPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CAXPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CAXPY_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -41,4 +41,4 @@ void API_SUFFIX(cblas_caxpy)( const CBLAS_INT N, const stdlib_complex64_t alpha,
4141
}
4242
#endif
4343

44-
#endif // !CAXPY_CBLAS_H
44+
#endif // !STDLIB_BLAS_BASE_CAXPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy.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 `ccopy`.
2121
*/
22-
#ifndef CCOPY_H
23-
#define CCOPY_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_H
23+
#define STDLIB_BLAS_BASE_CCOPY_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -45,4 +45,4 @@ void API_SUFFIX(c_ccopy_ndarray)( const CBLAS_INT N, const void *X, const CBLAS_
4545
}
4646
#endif
4747

48-
#endif // !CCOPY_H
48+
#endif // !STDLIB_BLAS_BASE_CCOPY_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy_cblas.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 CBLAS Level 1 routine `cblas_ccopy`.
2121
*/
22-
#ifndef CCOPY_CBLAS_H
23-
#define CCOPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CCOPY_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_ccopy)( const CBLAS_INT N, const void *X, const CBLAS_INT
4040
}
4141
#endif
4242

43-
#endif // !CCOPY_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_CCOPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/ccopy/include/stdlib/blas/base/ccopy_fortran.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 Fortran interface to the BLAS Level 1 routine `ccopy`.
2121
*/
22-
#ifndef CCOPY_FORTRAN_H
23-
#define CCOPY_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_CCOPY_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_CCOPY_FORTRAN_H
2424

2525
/*
2626
* 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 ccopy( const CBLAS_INT *, const void *, const CBLAS_INT *, void *, const CB
3838
}
3939
#endif
4040

41-
#endif // !CCOPY_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_CCOPY_FORTRAN_H

lib/node_modules/@stdlib/blas/base/cscal/include/stdlib/blas/base/cscal.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 `cscal`.
2121
*/
22-
#ifndef CSCAL_H
23-
#define CSCAL_H
22+
#ifndef STDLIB_BLAS_BASE_CSCAL_H
23+
#define STDLIB_BLAS_BASE_CSCAL_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -46,4 +46,4 @@ void API_SUFFIX(c_cscal_ndarray)( const CBLAS_INT N, const stdlib_complex64_t al
4646
}
4747
#endif
4848

49-
#endif // !CSCAL_H
49+
#endif // !STDLIB_BLAS_BASE_CSCAL_H

lib/node_modules/@stdlib/blas/base/cscal/include/stdlib/blas/base/cscal_cblas.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 CBLAS Level 1 routine `cblas_ccopy`.
2121
*/
22-
#ifndef CSCAL_CBLAS_H
23-
#define CSCAL_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CSCAL_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CSCAL_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626
#include "stdlib/complex/float32/ctor.h"
@@ -41,4 +41,4 @@ void API_SUFFIX(cblas_cscal)( const CBLAS_INT N, const stdlib_complex64_t alpha,
4141
}
4242
#endif
4343

44-
#endif // !CSCAL_CBLAS_H
44+
#endif // !STDLIB_BLAS_BASE_CSCAL_CBLAS_H

lib/node_modules/@stdlib/blas/base/cscal/include/stdlib/blas/base/cscal_fortran.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 Fortran interface to the BLAS Level 1 routine `cscal`.
2121
*/
22-
#ifndef CSCAL_FORTRAN_H
23-
#define CSCAL_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_CSCAL_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_CSCAL_FORTRAN_H
2424

2525
#include "stdlib/complex/float32/ctor.h"
2626

@@ -40,4 +40,4 @@ void cscal( const int *, const stdlib_complex64_t *, void *, const int * );
4040
}
4141
#endif
4242

43-
#endif // !CSCAL_FORTRAN_H
43+
#endif // !STDLIB_BLAS_BASE_CSCAL_FORTRAN_H

lib/node_modules/@stdlib/blas/base/csrot/include/stdlib/blas/base/csrot.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 `csrot`.
2121
*/
22-
#ifndef CSROT_H
23-
#define CSROT_H
22+
#ifndef STDLIB_BLAS_BASE_CSROT_H
23+
#define STDLIB_BLAS_BASE_CSROT_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -45,4 +45,4 @@ void API_SUFFIX(c_csrot_ndarray)( const CBLAS_INT N, void *X, const CBLAS_INT st
4545
}
4646
#endif
4747

48-
#endif // !CSROT_H
48+
#endif // !STDLIB_BLAS_BASE_CSROT_H

lib/node_modules/@stdlib/blas/base/csrot/include/stdlib/blas/base/csrot_cblas.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 CBLAS Level 1 routine `cblas_csrot`.
2121
*/
22-
#ifndef CSROT_CBLAS_H
23-
#define CSROT_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_CSROT_CBLAS_H
23+
#define STDLIB_BLAS_BASE_CSROT_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"
2626

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_csrot)( const CBLAS_INT N, void *X, const CBLAS_INT stride
4040
}
4141
#endif
4242

43-
#endif // !CSROT_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_CSROT_CBLAS_H

0 commit comments

Comments
 (0)