diff --git a/math/binary_exponentiation.c b/math/binary_exponentiation.c index 8d25faa2..5ee21555 100644 --- a/math/binary_exponentiation.c +++ b/math/binary_exponentiation.c @@ -8,10 +8,10 @@ * @author [Praneeth Jain](https://github.com/PraneethJain) */ -#include // for assert() -#include // for int64 types -#include // for output -#include // for exit() +#include /// for assert() +#include /// for int64 types +#include /// for output +#include /// for exit() /** * @brief Determines a raised to the nth power via binary exponentiation.