Skip to content

Commit 11f3cfa

Browse files
authored
refactor: update include header guards for double precision real packages
PR-URL: #7711 Reviewed-by: Athan Reines <[email protected]>
1 parent 72d2b0d commit 11f3cfa

File tree

46 files changed

+137
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+137
-137
lines changed

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

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

@@ -45,4 +45,4 @@ double API_SUFFIX(c_dasum_ndarray)( const CBLAS_INT N, const double *X, const CB
4545
}
4646
#endif
4747

48-
#endif // !DASUM_H
48+
#endif // !STDLIB_BLAS_BASE_DASUM_H

lib/node_modules/@stdlib/blas/base/dasum/include/stdlib/blas/base/dasum_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_dasum`.
2121
*/
22-
#ifndef DASUM_CBLAS_H
23-
#define DASUM_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_DASUM_CBLAS_H
23+
#define STDLIB_BLAS_BASE_DASUM_CBLAS_H
2424

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

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

43-
#endif // !DASUM_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_DASUM_CBLAS_H

lib/node_modules/@stdlib/blas/base/dasum/include/stdlib/blas/base/dasum_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 `dasum`.
2121
*/
22-
#ifndef DASUM_FORTRAN_H
23-
#define DASUM_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_DASUM_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_DASUM_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 dasumsub( const CBLAS_INT *, const double *, const CBLAS_INT *, double * );
3838
}
3939
#endif
4040

41-
#endif // !DASUM_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_DASUM_FORTRAN_H

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

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

@@ -45,4 +45,4 @@ void API_SUFFIX(c_daxpy_ndarray)( const CBLAS_INT N, const double alpha, const d
4545
}
4646
#endif
4747

48-
#endif // !DAXPY_H
48+
#endif // !STDLIB_BLAS_BASE_DAXPY_H

lib/node_modules/@stdlib/blas/base/daxpy/include/stdlib/blas/base/daxpy_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_daxpy`.
2121
*/
22-
#ifndef DAXPY_CBLAS_H
23-
#define DAXPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_DAXPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_DAXPY_CBLAS_H
2424

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

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_daxpy)( const CBLAS_INT N, const double alpha, const doubl
4040
}
4141
#endif
4242

43-
#endif // !DAXPY_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_DAXPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/daxpy/include/stdlib/blas/base/daxpy_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 `daxpy`.
2121
*/
22-
#ifndef DAXPY_FORTRAN_H
23-
#define DAXPY_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_DAXPY_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_DAXPY_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 daxpy( const CBLAS_INT *, const double *, const double *, const CBLAS_INT *
3838
}
3939
#endif
4040

41-
#endif // !DAXPY_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_DAXPY_FORTRAN_H

lib/node_modules/@stdlib/blas/base/dcabs1/include/stdlib/blas/base/dcabs1.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 Level 1 routine `dcabs1`.
2121
*/
22-
#ifndef DCABS1_H
23-
#define DCABS1_H
22+
#ifndef STDLIB_BLAS_BASE_DCABS1_H
23+
#define STDLIB_BLAS_BASE_DCABS1_H
2424

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

@@ -40,4 +40,4 @@ double c_dcabs1( const stdlib_complex128_t z );
4040
}
4141
#endif
4242

43-
#endif // !DCABS1_H
43+
#endif // !STDLIB_BLAS_BASE_DCABS1_H

lib/node_modules/@stdlib/blas/base/dcabs1/include/stdlib/blas/base/dcabs_cblas.h renamed to lib/node_modules/@stdlib/blas/base/dcabs1/include/stdlib/blas/base/dcabs1_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_dcabs1`.
2121
*/
22-
#ifndef DCABS1_CBLAS_H
23-
#define DCABS1_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_DCABS1_CBLAS_H
23+
#define STDLIB_BLAS_BASE_DCABS1_CBLAS_H
2424

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

@@ -40,4 +40,4 @@ double cblas_dcabs1( const stdlib_complex128_t z );
4040
}
4141
#endif
4242

43-
#endif // !DCABS1_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_DCABS1_CBLAS_H

lib/node_modules/@stdlib/blas/base/dcabs1/include/stdlib/blas/base/dcabs1_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 `dcabs1`.
2121
*/
22-
#ifndef DCABS1_FORTRAN_H
23-
#define DCABS1_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_DCABS1_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_DCABS1_FORTRAN_H
2424

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

@@ -40,4 +40,4 @@ void dcabs1sub( const stdlib_complex128_t *, double * );
4040
}
4141
#endif
4242

43-
#endif // !DCABS1_FORTRAN_H
43+
#endif // !STDLIB_BLAS_BASE_DCABS1_FORTRAN_H

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

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

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

48-
#endif // !DCOPY_H
48+
#endif // !STDLIB_BLAS_BASE_DCOPY_H

0 commit comments

Comments
 (0)