Skip to content

refactor: update include header guards for blas/base/dsyr #7689

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
/**
* Header file containing function declarations for the C interface to the BLAS Level 2 routine `dsyr`.
*/
#ifndef DSYR_H
#define DSYR_H
#ifndef STDLIB_BLAS_BASE_DSYR_H
#define STDLIB_BLAS_BASE_DSYR_H

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

Expand All @@ -45,4 +45,4 @@ void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const
}
#endif

#endif // !DSYR_H
#endif // !STDLIB_BLAS_BASE_DSYR_H
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
/**
* Header file containing function declarations for the C interface to the CBLAS Level 2 routine `cblas_dsyr`.
*/
#ifndef DSYR_CBLAS_H
#define DSYR_CBLAS_H
#ifndef STDLIB_BLAS_BASE_DSYR_CBLAS_H
#define STDLIB_BLAS_BASE_DSYR_CBLAS_H

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

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

#endif // !DSYR_CBLAS_H
#endif // !STDLIB_BLAS_BASE_DSYR_CBLAS_H