Skip to content

Commit d559fd7

Browse files
authored
refactor: update include header guards for single precision real packages
PR-URL: #7710 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent a9776fd commit d559fd7

File tree

48 files changed

+144
-144
lines changed

Some content is hidden

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

48 files changed

+144
-144
lines changed

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

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

@@ -45,5 +45,5 @@ CBLAS_INT API_SUFFIX(c_isamax_ndarray)( const CBLAS_INT N, const float *X, const
4545
}
4646
#endif
4747

48-
#endif // !ISAMAX_H
48+
#endif // !STDLIB_BLAS_BASE_ISAMAX_H
4949

lib/node_modules/@stdlib/blas/base/isamax/include/stdlib/blas/base/isamax_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_ISAMAX`.
2121
*/
22-
#ifndef ISAMAX_CBLAS_H
23-
#define ISAMAX_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_ISAMAX_CBLAS_H
23+
#define STDLIB_BLAS_BASE_ISAMAX_CBLAS_H
2424

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

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

43-
#endif // !ISAMAX_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_ISAMAX_CBLAS_H

lib/node_modules/@stdlib/blas/base/isamax/include/stdlib/blas/base/isamax_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 `isamax`.
2121
*/
22-
#ifndef ISAMAX_FORTRAN_H
23-
#define ISAMAX_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_ISAMAX_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_ISAMAX_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 compiler.
@@ -38,4 +38,4 @@ void isamaxsub( const int *, const float *, const int *, int * );
3838
}
3939
#endif
4040

41-
#endif // !ISAMAX_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_ISAMAX_FORTRAN_H

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

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

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

48-
#endif // !SASUM_H
48+
#endif // !STDLIB_BLAS_BASE_SASUM_H

lib/node_modules/@stdlib/blas/base/sasum/include/stdlib/blas/base/sasum_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_sasum`.
2121
*/
22-
#ifndef SASUM_CBLAS_H
23-
#define SASUM_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_SASUM_CBLAS_H
23+
#define STDLIB_BLAS_BASE_SASUM_CBLAS_H
2424

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

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

43-
#endif // !SASUM_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_SASUM_CBLAS_H

lib/node_modules/@stdlib/blas/base/sasum/include/stdlib/blas/base/sasum_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 `sasum`.
2121
*/
22-
#ifndef SASUM_FORTRAN_H
23-
#define SASUM_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_SASUM_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_SASUM_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 sasumsub( const int *, const float *, const int *, float * );
3838
}
3939
#endif
4040

41-
#endif // !SASUM_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_SASUM_FORTRAN_H

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

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

@@ -45,4 +45,4 @@ void API_SUFFIX(c_saxpy_ndarray)( const CBLAS_INT N, const float alpha, const fl
4545
}
4646
#endif
4747

48-
#endif // !SAXPY_H
48+
#endif // !STDLIB_BLAS_BASE_SAXPY_H

lib/node_modules/@stdlib/blas/base/saxpy/include/stdlib/blas/base/saxpy_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_saxpy`.
2121
*/
22-
#ifndef SAXPY_CBLAS_H
23-
#define SAXPY_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_SAXPY_CBLAS_H
23+
#define STDLIB_BLAS_BASE_SAXPY_CBLAS_H
2424

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

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

43-
#endif // !SAXPY_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_SAXPY_CBLAS_H

lib/node_modules/@stdlib/blas/base/saxpy/include/stdlib/blas/base/saxpy_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 `saxpy`.
2121
*/
22-
#ifndef SAXPY_FORTRAN_H
23-
#define SAXPY_FORTRAN_H
22+
#ifndef STDLIB_BLAS_BASE_SAXPY_FORTRAN_H
23+
#define STDLIB_BLAS_BASE_SAXPY_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 saxpy( const int *, const float *, const float *, const int *, float *, con
3838
}
3939
#endif
4040

41-
#endif // !SAXPY_FORTRAN_H
41+
#endif // !STDLIB_BLAS_BASE_SAXPY_FORTRAN_H

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

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

@@ -40,5 +40,5 @@ float c_scabs1( const stdlib_complex64_t c );
4040
}
4141
#endif
4242

43-
#endif // !SCABS1_H
43+
#endif // !STDLIB_BLAS_BASE_SCABS1_H
4444

0 commit comments

Comments
 (0)