Skip to content
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