Skip to content

Commit

Permalink
Use correct parameter name in function prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterDuke17 committed Jul 24, 2018
1 parent 8baf1bf commit ea9b013
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/math/bigintops.h
@@ -1,8 +1,8 @@
int MVM_bigint_mp_set_uint64(mp_int * a, MVMuint64 b);

MVMObject * MVM_bigint_abs(MVMThreadContext *tc, MVMObject *result, MVMObject *a);
MVMObject * MVM_bigint_neg(MVMThreadContext *tc, MVMObject *result, MVMObject *a);
MVMObject * MVM_bigint_not(MVMThreadContext *tc, MVMObject *result, MVMObject *a);
MVMObject * MVM_bigint_abs(MVMThreadContext *tc, MVMObject *result_type, MVMObject *a);
MVMObject * MVM_bigint_neg(MVMThreadContext *tc, MVMObject *result_type, MVMObject *a);
MVMObject * MVM_bigint_not(MVMThreadContext *tc, MVMObject *result_type, MVMObject *a);
/* unused */
/* void MVM_bigint_sqrt(MVMObject *b, MVMObject *a); */

Expand Down

0 comments on commit ea9b013

Please sign in to comment.