increase compatibility

Replace `bcmp` with `memcmp` to increase compatibility.
This commit is contained in:
FH0 2021-09-15 22:54:13 +08:00 committed by GitHub
parent 3375c6ac9d
commit c9fd5a0b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -515,7 +515,7 @@ found_piv:
* we can optimize the addmul).
*/
id_row[icol] = 1;
if (bcmp(pivot_row, id_row, k*sizeof(gf)) != 0) {
if (memcmp(pivot_row, id_row, k*sizeof(gf)) != 0) {
for (p = src, ix = 0 ; ix < k ; ix++, p += k ) {
if (ix != icol) {
c = p[icol] ;