mirror of
https://github.com/wangyu-/UDPspeeder.git
synced 2025-09-17 20:54:33 +08:00
increase compatibility
Replace `bcmp` with `memcmp` to increase compatibility.
This commit is contained in:
@@ -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] ;
|
||||
|
Reference in New Issue
Block a user