Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#699 from ivan-pi/lsame
Browse files Browse the repository at this point in the history
Add const to LAPACK_lsame_base
  • Loading branch information
weslleyspereira authored Aug 9, 2022
2 parents 3381a0e + 9079671 commit 984dcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LAPACKE/include/lapack.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ typedef lapack_logical (*LAPACK_Z_SELECT2)
( const lapack_complex_double*, const lapack_complex_double* );

#define LAPACK_lsame_base LAPACK_GLOBAL(lsame,LSAME)
lapack_logical LAPACK_lsame_base( char* ca, char* cb,
lapack_logical LAPACK_lsame_base( const char* ca, const char* cb,
lapack_int lca, lapack_int lcb
#ifdef LAPACK_FORTRAN_STRLEN_END
, size_t, size_t
Expand Down

0 comments on commit 984dcc0

Please sign in to comment.