Skip to content

Commit f911d85

Browse files
authored
refactor: update include header guards for blas/base/dsyr
PR-URL: #7689 Reviewed-by: Athan Reines <[email protected]>
1 parent 692b133 commit f911d85

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/include/stdlib/blas/base/dsyr.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 2 routine `dsyr`.
2121
*/
22-
#ifndef DSYR_H
23-
#define DSYR_H
22+
#ifndef STDLIB_BLAS_BASE_DSYR_H
23+
#define STDLIB_BLAS_BASE_DSYR_H
2424

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

@@ -45,4 +45,4 @@ void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const
4545
}
4646
#endif
4747

48-
#endif // !DSYR_H
48+
#endif // !STDLIB_BLAS_BASE_DSYR_H

lib/node_modules/@stdlib/blas/base/dsyr/include/stdlib/blas/base/dsyr_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 2 routine `cblas_dsyr`.
2121
*/
22-
#ifndef DSYR_CBLAS_H
23-
#define DSYR_CBLAS_H
22+
#ifndef STDLIB_BLAS_BASE_DSYR_CBLAS_H
23+
#define STDLIB_BLAS_BASE_DSYR_CBLAS_H
2424

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

@@ -40,4 +40,4 @@ void API_SUFFIX(cblas_dsyr)( const CBLAS_LAYOUT layout, const CBLAS_UPLO uplo, c
4040
}
4141
#endif
4242

43-
#endif // !DSYR_CBLAS_H
43+
#endif // !STDLIB_BLAS_BASE_DSYR_CBLAS_H

0 commit comments

Comments
 (0)